/* -----------------------------------------------------
   CSS RESET & NORMALIZE
----------------------------------------------------- */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #FFF;
  color: #25303B;
  letter-spacing: 0.02em;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #25303B;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
}
.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 16px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
/* ---------------------------------------------------
   BRAND COLORS, TYPOGRAPHY & PLAYFUL DYNAMIC STYLE
--------------------------------------------------- */
:root {
  --primary: #25303B;
  --secondary: #BFA980;
  --accent: #E5E1DC;
  --brand-pink: #FF6F91;
  --brand-yellow: #FFE066;
  --brand-blue: #26C6DA;
  --brand-green: #52E289;
  --brand-orange: #FFB84F;
  --shadow-color: rgba(37, 48, 59, 0.08);
  --border-radius: 22px;
}
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Merriweather:wght@700&display=swap');
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--accent);
}
h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  letter-spacing: 0.02em;
}
.hero h1, .hero h2 {
  color: var(--brand-pink);
  text-shadow: 2px 2px 0 var(--brand-yellow);
}
.hero p {
  font-size: 1.25rem;
  color: var(--secondary);
  font-weight: 600;
}
main ul, main ol {
  padding-left: 1.5em;
  margin-bottom: 12px;
}
main ul li, main ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  position: relative;
}
main ul li:before {
  content: '•';
  color: var(--brand-blue);
  font-weight: bold;
  margin-right: 8px;
}
main ol li {
  counter-increment: section-counter;
}
main ol {
  counter-reset: section-counter;
}
main ol li:before {
  content: counter(section-counter) '.';
  color: var(--brand-pink);
  font-weight: bold;
  margin-right: 7px;
}
blockquote {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: var(--primary);
  background: var(--brand-yellow);
  border-left: 7px solid var(--brand-pink);
  border-radius: var(--border-radius);
  padding: 22px 28px 16px 28px;
  margin-bottom: 16px;
  box-shadow: 0 5px 24px var(--shadow-color);
  animation: fadeInUp 0.8s cubic-bezier(.65,-0.02,.74,.16);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.text-section,
.text-image-section,
.map-snippet {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
/* ----------------------------
   HEADER & NAVIGATION
------------------------------ */
header {
  background: #FFF;
  box-shadow: 0 3px 16px var(--shadow-color);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 950;
  width: 100%;
}
header .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  height: 94px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1002;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-size: 1.12rem;
  font-weight: 600;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-yellow);
  color: var(--brand-pink);
  transform: translateY(-2px) scale(1.065) skewX(-7deg);
}
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  border-radius: 18px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s cubic-bezier(.5,1.8,.5,1),
              color 0.22s cubic-bezier(.5,1.8,.5,1),
              transform 0.16s;
  box-shadow: 0 2px 12px var(--shadow-color), 0 1px 0 #fff inset;
}
.cta-primary {
  background: var(--brand-pink);
  color: var(--primary);
  letter-spacing: 0.02em;
  border: 2px solid var(--brand-yellow);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--brand-yellow);
  color: var(--primary);
  border-color: var(--brand-pink);
  transform: scale(1.08) rotate(-1.2deg);
}
.cta-secondary {
  background: var(--brand-blue);
  color: #fff;
  border: 2px solid var(--brand-orange);
  margin-top: 10px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-orange);
  color: var(--primary);
  border-color: var(--brand-blue);
  transform: scale(1.06) rotate(1.2deg);
}
.mobile-menu-toggle {
  display: none;
  background: var(--brand-yellow);
  color: var(--primary);
  font-size: 2rem;
  padding: 6px 14px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
  z-index: 1103;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-pink);
  color: #fff;
  transform: scale(1.13) rotate(-6deg);
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
/* ----------------------------
   MOBILE SLIDE MENU
------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 95vw;
  height: 100vh;
  background: linear-gradient(145deg, var(--brand-yellow), var(--brand-blue) 70%);
  box-shadow: -8px 0 32px rgba(37,48,59,0.12);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.85,0,.4,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
  transition: transform 0.42s cubic-bezier(0.81,0,.51,1.03);
}
.mobile-menu-close {
  margin-left: 24px;
  margin-bottom: 36px;
  font-size: 2.35rem;
  background: 0;
  border: 0;
  color: var(--primary);
  cursor: pointer;
  border-radius: 45px;
  padding: 2px 18px 2px 10px;
  transition: background 0.12s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-pink);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
  padding-left: 28px;
  font-size: 1.25rem;
}
.mobile-nav a {
  color: var(--primary);
  margin: 0;
  text-decoration: none;
  font-weight: 700;
  border-radius: 13px;
  padding: 11px 12px;
  transition: background 0.16s, color 0.15s, transform 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-orange);
  color: #fff;
  transform: translateX(7px) scale(1.08);
}
@media (max-width: 767px) {
  .mobile-menu {
    width: 99vw;
    border-radius: 0 0 0 26px;
  }
  .mobile-nav {
    font-size: 1.04rem;
    padding-left: 18px;
  }
}
body.mobile-menu-open {
  overflow: hidden;
  touch-action: none;
}
/* --------------------------------------
   HERO SECTIONS & PROMINENT HEADERS
---------------------------------------- */
.hero {
  background: linear-gradient(90deg, var(--brand-pink) 0, var(--brand-yellow) 90%);
  min-height: 340px;
  display: flex;
  align-items: center;
  border-radius: 0 0 52px 0;
  box-shadow: 0 9px 24px var(--shadow-color);
  margin-bottom: 48px;
  padding: 48px 0 38px 0;
  animation: playful-bg 2s cubic-bezier(.73,.21,.44,1) alternate infinite;
}
@keyframes playful-bg {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 50% 42%; }
  100% { background-position: 100% 60%; }
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 260px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 17px;
}
/* --------------------------------------
   FLEXBOX LAYOUT COMPONENTS
---------------------------------------- */
.feature-grid, .service-details-grid, .team-members-list, .reviews-preview, .review-list, .short-excerpts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 8px;
}
.feature-item, .service-card, .team-member-profile, .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 24px var(--shadow-color);
  margin-bottom: 20px;
  padding: 26px 20px 22px 20px;
  min-width: 220px;
  max-width: 335px;
  transition: transform 0.19s, box-shadow 0.19s;
  cursor: pointer;
  border: 2.5px solid transparent;
  position: relative;
  will-change: transform, box-shadow;
  outline: none;
}
.feature-item:hover, .service-card:hover, .team-member-profile:hover, .testimonial-card:hover,
.feature-item:focus, .service-card:focus, .team-member-profile:focus, .testimonial-card:focus {
  box-shadow: 0 8px 40px var(--shadow-color);
  transform: translateY(-8px) scale(1.04) rotateZ(-0.7deg);
  border-color: var(--brand-pink);
}
.feature-item img,
.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 8px rgba(191,169,128,0.06));
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 24px var(--shadow-color);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 24px 20px 24px;
  min-width: 220px;
  max-width: 400px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover, .card:focus {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 10px 31px var(--shadow-color);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 18px var(--shadow-color);
  font-style: italic;
  font-size: 1.06rem;
  color: #232323;
}
.testimonial-card strong {
  color: var(--primary);
  margin-left: 6px;
  font-style: normal;
  font-weight: 700;
}
.star-rating {
  color: var(--brand-yellow);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-top: 2px;
}
.review-list {
  gap: 24px;
}
.reviews-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: flex-start;
}
.review-snippet,.guide-snippet {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 18px var(--shadow-color);
  padding: 20px 18px 16px 18px;
  margin-bottom: 20px;
  max-width: 340px;
}
.guide-snippet h3 {
  color: var(--brand-blue);
  margin-bottom: 7px;
}
.guide-snippet p {
  font-size: 1rem;
}
.service-list ul {
  margin-top: 14px;
}
.service-details-grid {
  gap: 24px;
}
.service-card p {
  color: var(--primary);
  font-size: 1rem;
}
.service-card strong {
  color: var(--brand-pink);
  font-weight: 700;
  font-family: 'Merriweather', serif;
}
.team-member-profile {
  min-width: 200px;
  background: #fff;
  color: var(--primary);
  border-left: 5px solid var(--brand-blue);
}
.team-members-list {
  gap: 28px;
  margin-top: 10px;
}
/* --------------------------------------------------
   CARDS, HIGHLIGHTS, ATTRIBUTES, SHORT EXCERPTS
--------------------------------------------------- */
.expertise-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 14px;
}
.expertise-highlights li {
  padding: 9px 19px;
  background: var(--brand-green);
  color: var(--primary);
  border-radius: 18px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
  text-shadow: 0 1px 0 #fff7;
  transition: background 0.18s, color 0.16s;
}
.short-excerpts ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
  margin-top: 9px;
}
.short-excerpts li {
  background: var(--brand-yellow);
  color: var(--primary);
  border-radius: 14px;
  padding: 8px 20px;
  font-size: 1rem;
  box-shadow: 0 1px 8px rgba(37,48,59,0.03);
}
/* ---------------------------------------------------
   CONTACT & FOOTER
--------------------------------------------------- */
.footer-logo {
  margin-bottom: 16px;
}
footer {
  background: var(--primary);
  color: #fff;
  padding: 46px 0 22px 0;
  border-radius: 28px 28px 0 0;
}${/*
   footer container layout
*/''}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  align-items: center;
  margin-bottom: 5px;
}
.footer-nav a {
  color: var(--brand-yellow);
  font-size: 1rem;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-pink);
  color: #fff;
}
.footer-contact p, .footer-contact a {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}
.footer-contact a {
  text-decoration: underline;
}
.copyright {
  color: var(--brand-pink);
  font-size: 0.98rem;
  margin-top: 7px;
  opacity: 0.87;
}
/* ------------------------------------------------
   SPACING AND FLEX ALIGNMENT PER GUIDELINES
------------------------------------------------- */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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 {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ---------------------------------------------
   FORMS, LISTS, MAPS, ACCESSIBILITY
---------------------------------------------- */
.map-snippet p {
  color: var(--brand-blue);
  font-size: 1.07rem;
  background: var(--brand-yellow);
  border-radius: 14px;
  padding: 10px 17px;
  margin-top: 9px;
  margin-bottom: 8px;
  font-weight: 600;
}
/* ---------------------------------------------
   RESPONSIVE DESIGN - MOBILE FIRST
---------------------------------------------- */
@media (max-width: 1020px) {
  .container {
    max-width: 95vw;
    padding: 0 7vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-details-grid, .team-members-list, .reviews-preview, .review-list {
    flex-direction: column;
    gap: 28px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card {
    max-width: 98vw;
    min-width: 60vw;
  }
  .service-card, .feature-item, .team-member-profile {
    max-width: 100vw;
    min-width: 65vw;
  }
}
@media (max-width: 768px) {
  .container, .hero .container {
    padding: 0 7vw;
  }
  .section, section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
  .hero {
    padding: 28px 0 24px 0;
    border-radius: 0 0 34px 0;
    min-height: 170px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .cta-primary, .cta-secondary {
    font-size: 1rem;
    padding: 11px 15px;
  }
  .service-card, .feature-item, .team-member-profile {
    max-width: 100vw;
    min-width: 90vw;
    padding: 18px 13px 16px 15px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    font-size: 1rem;
    padding: 13px 6px 13px 16px;
  }
  footer {
    padding: 22px 0 14px 0;
    border-radius: 21px 21px 0 0;
  }
  .footer-logo {
    width: 68px;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.12rem; }
  .container { padding: 0 3vw; }
  .review-list, .reviews-preview { gap: 13px; }
  .feature-item, .service-card { min-width: 95vw; padding: 13px 7px; }
}
/* ---------------------------------------------
   COOKIE CONSENT BANNER & PREFERENCES MODAL
---------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffbea;
  color: var(--primary);
  box-shadow: 0 -4px 22px var(--shadow-color);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 24px 18px 19px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 9999;
  font-size: 1.04rem;
  animation: cookie-bounce-in 0.7s cubic-bezier(.7,.38,.57,1.13);
}
@keyframes cookie-bounce-in {
  0% { transform: translateY(100px); opacity: 0; }
  64% { transform: translateY(-12px); }
  86% { transform: translateY(3px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 10px 20px;
  border: 0;
  border-radius: 12px;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.12s, transform 0.14s;
  background: var(--brand-yellow);
  color: var(--primary);
  box-shadow: 0 1px 8px var(--shadow-color);
}
.cookie-btn.accept {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--brand-green);
  color: var(--primary);
  transform: translateY(-2px) scale(1.08);
}
.cookie-btn.reject {
  background: var(--brand-blue);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--brand-yellow);
  color: var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--brand-orange);
  color: #25303B;
}
/* Cookie Preferences Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(37,48,59,0.45);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.18s;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 22px;
  max-width: 360px;
  width: 98vw;
  padding: 38px 28px 30px 28px;
  box-shadow: 0 12px 40px var(--shadow-color);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: slideInUp 0.35s cubic-bezier(.51,1.25,.51,.93);
  position: relative;
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 9px;
  right: 16px;
  background: 0;
  border: 0;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand-yellow);
}
.cookie-modal h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.18rem;
  color: var(--brand-pink);
  margin-bottom: 9px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--primary);
}
.cookie-modal input[type="checkbox"] {
  width: 20px; height: 20px; accent-color: var(--brand-blue); border-radius: 4px;
}
.cookie-modal .essential {
  color: var(--brand-green);
  font-weight: bold;
  font-size: 1rem;
}
.cookie-modal .controls {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; gap: 10px; padding: 16px 6vw 14px 8vw; font-size: 0.97rem; }
  .cookie-modal-dialog { max-width: 95vw; padding: 24px 8px; }
}
/* ---------------------------------------------
   ANIMATIONS AND MICRO-INTERACTIONS
---------------------------------------------- */
.card:hover:after, .feature-item:hover:after, .service-card:hover:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 10px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--brand-blue);
  opacity: 0.19;
  animation: bounceDot 0.69s cubic-bezier(.65,0,.53,1.44);
}
@keyframes bounceDot {
  0%{ transform: scale(0); opacity: 0.19; }
  60%{ transform: scale(1.62); opacity: 0.18; }
  80%{ transform: scale(0.8); opacity: 0.15; }
  100%{ transform: scale(1); opacity: 0.11; }
}
.cta-primary:active, .cta-secondary:active,
.cookie-btn:active {
  transform: scale(0.98) rotate(-0.5deg);
}
nav a, button, .cta-primary, .cta-secondary, .cookie-btn {
  outline-offset: 2px;
}
nav a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .cookie-btn:focus {
  background: var(--brand-yellow);
  color: var(--primary);
  box-shadow: 0 0 0 2px var(--brand-pink);
}
/* ---------------------------------------------------
   ACCESSIBILITY: FOCUS VISIBLE & VISITIED STATES
--------------------------------------------------- */
a:active, a:visited {
  color: var(--brand-pink);
}
@media (hover: hover) {
  a:hover, a:focus {
    text-decoration: underline wavy var(--brand-orange) 2px;
  }
}
/* --------------------------------------------
   PRINT FRIENDLY
--------------------------------------------- */
@media print {
  header, .main-nav, .mobile-menu, .cta-primary, .cta-secondary, .cookie-banner, .cookie-modal, footer {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
}
