/* CSS RESET & BASE ---------------------------------------------------- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F7FAFC;
  height: 100%;
}
body {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  color: #1D2536;
  background: #F7FAFC;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.65;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #18467C;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: #F4BC3C;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}
li {
  margin-bottom: 0.5rem;
}
button, .btn-primary, .btn-secondary {
  font-family: 'Montserrat', Roboto, Arial, sans-serif;
  cursor: pointer;
  background: none;
  border: none;
  appearance: none;
}

/* TYPOGRAPHY ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #18467C;
  font-weight: 700;
  margin-bottom: 0.65em;
  line-height: 1.16;
}
h1 {
  font-size: 2.6rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.35rem;
}
h4 {
  font-size: 1.15rem;
}
.subtitle {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #6C8CAB;
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 1.2em;
}
strong {
  color: #18467C;
}

/* LAYOUT --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 2px 18px 0 rgba(40, 76, 140, 0.06);
}
@media (max-width: 992px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 7px;
    border-radius: 20px;
  }
}
@media (max-width: 600px) {
  .section {
    margin-bottom: 28px;
    padding: 20px 3px;
    border-radius: 14px;
  }
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* FLEXBOX PATTERNS ----------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(70, 110, 180, 0.04);
  padding: 28px 22px;
  flex: 1 1 280px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4F9FD;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(150, 160, 190, 0.06);
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 250px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Spacing utility for all repeated blocks */
.service-list, .tour-cards, .feature-grid, .faq-accordion, .expertise-briefs, .response-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list > div, .tour-cards > div, .feature-grid > div, .faq-accordion > div {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(130, 160, 200, 0.05);
  padding: 22px 18px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  transition: box-shadow 0.18s;
}
@media (max-width: 700px) {
  .service-list, .tour-cards, .feature-grid, .faq-accordion {
    flex-direction: column;
    gap: 14px;
  }
  .service-list > div, .tour-cards > div, .feature-grid > div, .faq-accordion > div {
    min-width: unset;
  }
}

/* HEADER -------------------------------------------------------------- */
header {
  background: linear-gradient(90deg, #EBF4FA 0%, #FCEEF6 100%);
  padding: 0;
  border-bottom: 1px solid #E7F0FD;
  position: relative;
  z-index: 35;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
header nav a {
  color: #18467C;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 1rem;
  padding: 7px 0;
  border-bottom: 2.5px solid transparent;
  transition: color 0.18s, border-color 0.22s;
}
header nav a:hover,
header nav a.active {
  color: #F4BC3C;
  border-bottom: 2.5px solid #F4BC3C;
}
header img[alt="Quaint Vista Tours"] {
  max-height: 52px;
}
.btn-primary {
  display: inline-block;
  background: #F4BC3C;
  color: #18467C;
  font-family: 'Montserrat', Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 10px 26px;
  border-radius: 26px;
  box-shadow: 0 2px 10px 0 rgba(210, 168, 68, 0.08);
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.16s, box-shadow 0.16s;
  border: none;
}
.btn-primary:hover,.btn-primary:focus {
  background: #18467C;
  color: #FFF;
  box-shadow: 0 4px 20px 0 rgba(24, 70, 124, 0.14);
  outline: none;
}

/* HEADER: MOBILE BURGER ------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 18px;
  background: #F4BC3C;
  color: #18467C;
  font-size: 2rem;
  border: none;
  border-radius: 32px;
  width: 52px;
  height: 52px;
  z-index: 51;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 8px 0 rgba(245, 197, 65, 0.11);
  cursor: pointer;
  transition: background 0.18s, color 0.15s,
    box-shadow 0.14s, transform 0.16s;
}
.mobile-menu-toggle:active {
  background: #F4e2a9;
}

/* Hide nav and show burger on mobile */
@media (max-width: 900px) {
  header nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE MENU OVERLAY -------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(100deg, #FDF8FA 0%, #E9F5FA 100%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(-105vw);
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
  padding-top: 17px;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: #18467C;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  margin: 14px 16px 0 0;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(48, 90, 160, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: center;
  margin-top: 48px;
}
.mobile-nav a {
  color: #18467C;
  font-family: 'Montserrat', Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 13px 0;
  border-radius: 16px;
  width: 80vw;
  max-width: 330px;
  text-align: center;
  background: #F4BC3C0c;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:hover {
  background: #F4BC3C;
  color: #18467C;
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* BUTTONS -------------------------------------------------------------- */
.btn-secondary {
  background: #18467C;
  color: #FFF;
  border-radius: 24px;
  padding: 10px 24px;
  font-family: 'Montserrat', Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  margin-left: 10px;
  transition: background 0.16s, color 0.13s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F4BC3C;
  color: #18467C;
}
/* FORM & LINK BUTTONS */
input, textarea, select {
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid #C6DBEE;
  background: #FAFBFF;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border-color 0.14s;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #F4BC3C33;
  border-color: #F4BC3C;
}
input[type="submit"] {
  background: #18467C;
  color: #FFF;
  border-radius: 20px;
  padding: 8px 32px;
  border: none;
  font-size: 1rem;
  transition: background 0.13s;
  cursor: pointer;
}
input[type="submit"]:hover {
  background: #F4BC3C;
  color: #18467C;
}

/* HERO / BANNER SECTION ------------------------------------------------ */
main section:first-child {
  background: linear-gradient(109deg, #FAF4FB 0%, #E8F7FE 100%);
  box-shadow: 0 4px 24px 0 rgba(24,70,124,0.05);
  border-radius: 38px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}
main section:first-child .container {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main section:first-child h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #18467C;
  margin-bottom: 0.75em;
  text-shadow: 0 1px 6px #B8D0EF33;
}

/* FEATURES, TOUR CARDS, VALUE BLOCKS ----------------------------------- */
.feature-grid, .tour-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.feature-grid > div, .tour-cards > div {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 22px 14px 18px 14px;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: 0 2px 14px 0 rgba(100, 170, 208, 0.055);
  transition: box-shadow 0.16s, transform 0.14s;
}
.feature-grid > div:hover, .tour-cards > div:hover {
  box-shadow: 0 6px 24px 0 rgba(72, 120, 178,0.11);
  transform: translateY(-4px) scale(1.025);
}
.feature-grid img, .tour-cards img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  object-fit: contain;
}

/* TESTIMONIALS -------------------------------------------------------- */
.testimonial-slider, .testimonial-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 18px 20px 18px;
  background: #F7FAFE;
  box-shadow: 0 3px 18px 0 rgba(60, 80, 100, 0.09);
  border-radius: 19px;
  min-width: 220px;
  max-width: 380px;
  margin-bottom: 20px;
  color: #1D2536;
  font-size: 1.12rem;
  font-style: italic;
  border-left: 6px solid #F4BC3C;
}
.testimonial-card span {
  font-size: 1rem;
  color: #18467C;
  font-weight: 600;
  font-style: normal;
  align-self: flex-end;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 15px;
  }
}

/* ACCORDION FAQ ------------------------------------------------------- */
.faq-accordion {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.faq-accordion > div {
  box-shadow: 0 2px 8px 0 rgba(60, 100, 150, 0.06);
  background: #FDF9F4;
  border-radius: 14px;
  padding: 16px 14px 13px 18px;
  flex: 1 1 260px;
  margin-bottom: 18px;
}
.faq-accordion h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7em;
  color: #18467C;
  font-weight: 700;
}

.company-details p, .response-info, .expertise-briefs {
  margin-bottom: 10px;
  background: #F7FAFD;
  border-radius: 13px;
  padding: 13px 12px;
  font-size: 1.08rem;
}
.response-info h3, .expertise-briefs h3 {
  margin-bottom: 0.38em;
}

/* LISTS ---------------------------------------- */
ul > li, ol > li {
  margin-bottom: 0.55em;
  font-size: 1.08rem;
  color: #466295;
}

/* FOOTER -------------------------------------------------------------- */
footer {
  background: linear-gradient(90deg, #F8F7FC 0%, #F8FAF3 100%);
  padding: 48px 0 14px 0;
  font-size: 1.05rem;
  color: #18467C;
  border-top: 1.5px solid #E6EDF7;
  margin-top: 34px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
footer nav a {
  color: #18467C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  padding: 2px 0;
  transition: color 0.16s;
}
footer nav a:hover {
  color: #F4BC3C;
}
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  align-items: center;
}
.contact-footer > div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #18467C;
  font-size: 1rem;
}
.contact-footer img {
  width: 18px;
  height: 18px;
}
.footer-copy {
  font-size: 0.95rem;
  color: #466295;
  margin-top: 7px;
}
footer img[alt="Quaint Vista Tours"] {
  max-height: 46px;
  margin-bottom: 13px;
}
@media (max-width: 550px) {
  footer .container, .contact-footer, footer nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .contact-footer > div {
    margin-bottom: 4px;
  }
}

/* COOKIE BANNER -------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 12000;
  width: 100vw;
  background: #FFF5EBAA;
  box-shadow: 0 -2px 14px 0 rgba(150,150,120,0.09);
  padding: 26px 18px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
  font-size: 1.08rem;
  color: #18467C;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.78,0,0.18,1), opacity 0.26s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner .cookie-btn {
  margin-left: 8px;
  border-radius: 28px;
  padding: 9px 22px;
  font-family: 'Montserrat', Roboto, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 5px 0 rgba(240,200,80,0.09);
  transition: background 0.17s, color 0.13s;
}
.cookie-banner .accept {
  background: #F4BC3C;
  color: #18467C;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #18467C;
  color: #FFF;
}
.cookie-banner .reject {
  background: #E0E8F8;
  color: #466295;
}
.cookie-banner .reject:hover {
  background: #BACBED;
  color: #18467C;
}
.cookie-banner .settings {
  background: #F9F5EC;
  color: #97885a;
  border: 1.5px solid #F4BC3C;
}
.cookie-banner .settings:hover{
  background: #FFF7E0;
  color: #18467C;
}

/* COOKIE MODAL --------------------------------------------------------- */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  top: 0;
  background: rgba(20,40,59,0.27);
  z-index: 13000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.32s;
  visibility: hidden;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal .cookie-modal-content {
  width: 95vw;
  max-width: 380px;
  background: #FFF;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -2px 18px 0 rgba(60, 90, 120,0.09);
  padding: 30px 24px 23px 24px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  transition: transform 0.28s cubic-bezier(0.77,0,0.25,1);
  transform: translateY(100vh);
}
.cookie-modal.open .cookie-modal-content {
  transform: translateY(0);
}
.cookie-modal h3 {
  color: #18467C;
  font-size: 1.4rem;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin: 12px 0 0 0;
}
.cookie-toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  background: #E7EDF3;
  border-radius: 16px;
  outline: none;
  margin-left: 7px;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-toggle-switch[aria-checked="true"] {
  background: #F4BC3C;
}
.cookie-toggle-switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0 1px 2px #ccc;
  transition: left 0.20s;
}
.cookie-toggle-switch[aria-checked="true"]:before {
  left: 20px;
}
.cookie-modal .modal-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal .modal-accept,
.cookie-modal .modal-cancel {
  border-radius: 23px;
  background: #F4BC3C;
  color: #18467C;
  font-family: 'Montserrat', Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 28px;
  border: none;
  cursor: pointer;
  margin-right: 8px;
}
.cookie-modal .modal-cancel {
  background: #E0E8F8;
  color: #466295;
  font-weight: 500;
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 17px; top: 16px;
  font-size: 1.3rem;
  background: transparent;
  border: none;
  color: #18467C;
  cursor: pointer;
}

/* SOFT PASTEL AESTHETIC ------------------------------------------------ */
body, .section, .content-wrapper, .testimonial-card, .feature-grid > div, .tour-cards > div, .faq-accordion > div, .service-list > div, .card {
  /* Pastel gradients/solid backgrounds */
  /* Handled earlier in section/block specifics */
}
.section, .content-wrapper, .testimonial-card, .feature-grid > div, .tour-cards > div, .faq-accordion > div, .service-list > div, .card {
  background: #FFF;
  border-radius: 18px;
}
main section {
  box-shadow: 0 2px 18px 0 rgba(80, 160, 200, 0.055);
  border-radius: 32px;
}
.card, .feature-grid > div, .tour-cards > div, .faq-accordion > div, .testimonial-card {
  box-shadow: 0 2px 14px 0 rgba(140, 200, 220, 0.07);
  border: 1.5px solid #F4EFFA;
  transition: box-shadow 0.14s, border 0.13s, transform 0.13s;
}
.card:hover, .feature-grid > div:hover, .tour-cards > div:hover, .faq-accordion > div:hover {
  box-shadow: 0 6px 20px 0 rgba(80,170,210,0.15);
  border-color: #F4BC3C55;
  transform: translateY(-4px) scale(1.03);
  z-index: 3;
}

/* Shadows for dreamy feeling */
.section, .content-wrapper, .testimonial-card {
  box-shadow: 0 2px 16px 0 rgba(208, 220, 247, 0.13);
}

/* Color accents for dreamy pastel look */
h1, h2, h3, .btn-primary, .btn-secondary {
  /* Already handled by brand colors */
}
header, footer {
  background: linear-gradient(90deg, #EBF4FA 0%, #FCEEF6 100%);
}

/* Soft hover effect */
a, .btn-primary, .btn-secondary, .cookie-btn, .card, .feature-grid > div, .tour-cards > div, .faq-accordion > div {
  transition: 
    color 0.14s, box-shadow 0.18s, background 0.15s, border 0.13s,
    transform 0.17s;
}

/* Font-smoothing/hierarchy refinements */
h1, h2, h3, h4 {
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
}
p, li, span, .subtitle, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  color: #466295;
}


/* MEDIA QUERIES -------------------------------------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 800px) {
  html {
    font-size: 15px;
  }
  main section:first-child h1 {
    font-size: 2.0rem;
  }
  .feature-grid, .tour-cards, .service-list {
    gap: 14px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 14px;
  }
  header .container {
    min-height: 60px;
    padding: 0 9px;
  }
  .btn-primary, .btn-secondary {
    padding: 8px 15px;
    font-size: 1rem;
  }
  .testimonial-card {
    padding: 14px 6px 15px 9px;
  }
}


/* ANIMATIONS & MICRO-INTERACTIONS -------------------------------------- */
.card, .feature-grid > div, .tour-cards > div, .faq-accordion > div, .testimonial-card {
  will-change: transform, box-shadow;
}
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.16s, color 0.11s, box-shadow 0.17s, transform 0.13s;
}
.btn-primary:active, .btn-secondary:active, .cookie-btn:active {
  transform: scale(0.965);
}


/* Z-INDEXS ------------------------------------------------------------- */
header {
  z-index: 35;
}
.mobile-menu {
  z-index: 1001;
}
.mobile-menu-close {
  z-index: 1500;
}
.cookie-banner {
  z-index: 12000;
}
.cookie-modal {
  z-index: 13000;
}

/* ACCESSIBLE FOCUS STATES ---------------------------------------------- */
:focus-visible {
  outline: 2.5px solid #F4BC3C;
  outline-offset: 2px;
}

/* UTILITY CLASSES ------------------------------------------------------ */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.7rem; }
.mb-2 { margin-bottom: 2rem; }
.hide { display: none !important; }

/* PRINT --------------------------------------------------------------- */
@media print {
  header, footer, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  .container, main, section, .section {
    box-shadow: none !important;
    background: #fff !important;
    padding: 0; margin: 0;
  }
  body {
    background: #fff !important;
    color: #222 !important;
  }
}
