/* =========================
   Vintage Retro Brand Colors
   ========================= */
:root {
  --primary: #2C3E50;
  --secondary: #F5A623;
  --accent: #EDF2F7;
  --vintage-red: #B94E48;
  --vintage-green: #7A9D54;
  --vintage-blue: #4A6A8A;
  --vintage-yellow: #F7E9A0;
  --vintage-brown: #A67C52;
  --vintage-cream: #FDF6E3;
  --vintage-orange: #E07A5F;
  --vintage-shadow: rgba(44,62,80,0.08);
  --vintage-border: #D8BFA5;
  --vintage-bg: #FDF6E3;
  --vintage-bg-dark: #E6D3B3;
  --vintage-text: #3B2C23;
  --vintage-muted: #A67C52;
  --star-yellow: #FFD700;
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--vintage-bg);
  color: var(--vintage-text);
  margin: 0;
  padding: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0.7em;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.2rem;
  font-family: 'Pacifico', 'Montserrat', cursive, sans-serif;
  color: var(--vintage-red);
  text-shadow: 2px 2px 0 var(--vintage-yellow), 0 2px 8px var(--vintage-shadow);
  margin-bottom: 0.5em;
}
h2 {
  font-size: 1.6rem;
  color: var(--vintage-green);
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  border-bottom: 2px dashed var(--vintage-border);
  padding-bottom: 0.2em;
  margin-bottom: 1em;
}
h3 {
  font-size: 1.2rem;
  color: var(--vintage-blue);
  font-family: 'Montserrat', Arial, sans-serif;
}

strong {
  color: var(--vintage-red);
  font-weight: 700;
}

/* =========================
   Layout Containers
   ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  background: var(--vintage-cream);
  border-radius: 18px;
  box-shadow: 0 4px 24px var(--vintage-shadow);
  padding: 32px 24px;
  margin-bottom: 40px;
  border: 1.5px solid var(--vintage-border);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--vintage-bg-dark);
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--vintage-shadow);
  padding: 24px 18px;
  border: 1.5px solid var(--vintage-border);
  transition: transform 0.18s cubic-bezier(.4,1.3,.7,1), box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.025) rotate(-1deg);
  box-shadow: 0 8px 32px var(--vintage-shadow);
}

.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;
}
.text-image-section img {
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 4px 24px var(--vintage-shadow);
  border: 2.5px solid var(--vintage-border);
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--vintage-yellow);
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--vintage-shadow);
  margin-bottom: 20px;
  border: 1.5px solid var(--vintage-border);
  color: var(--vintage-text);
  font-style: italic;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px var(--vintage-shadow);
}
.testimonial-author {
  font-family: 'Pacifico', cursive;
  color: var(--vintage-red);
  font-size: 1.1em;
  margin-left: 12px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--vintage-bg-dark);
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--vintage-shadow);
  padding: 18px 14px;
  border: 1.5px solid var(--vintage-border);
  width: 220px;
  min-width: 180px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--vintage-shadow);
  border: 1.5px solid var(--vintage-border);
}
.feature-item:hover {
  box-shadow: 0 8px 32px var(--vintage-shadow);
  transform: scale(1.03) rotate(-1deg);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.feature-icons {
  display: flex;
  gap: 18px;
  font-size: 1.7em;
  margin: 18px 0 10px 0;
}
.feature-icons span {
  background: var(--vintage-yellow);
  border-radius: 50%;
  padding: 8px 14px;
  border: 1.5px solid var(--vintage-border);
  box-shadow: 0 2px 8px var(--vintage-shadow);
  transition: background 0.18s, transform 0.18s;
  cursor: pointer;
}
.feature-icons span:hover {
  background: var(--vintage-orange);
  transform: scale(1.1) rotate(-3deg);
}

.feature-descriptions {
  margin-top: 10px;
  margin-bottom: 18px;
}

/* =========================
   Navigation & Header
   ========================= */
header {
  background: var(--vintage-yellow);
  border-bottom: 3px double var(--vintage-border);
  box-shadow: 0 2px 12px var(--vintage-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
}
.logo img {
  height: 48px;
  width: auto;
  filter: sepia(0.2) contrast(1.1) saturate(1.2);
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08em;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--vintage-orange);
  color: #fff;
}

.cta-btn {
  background: var(--vintage-red);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.08em;
  padding: 10px 28px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 2px 12px var(--vintage-shadow);
  text-decoration: none;
  letter-spacing: 0.06em;
  margin-left: 18px;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--vintage-green);
  color: #fff;
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 8px 32px var(--vintage-shadow);
}

/* =========================
   Mobile Navigation
   ========================= */
.mobile-menu-toggle {
  display: none;
  background: var(--vintage-red);
  color: #fff;
  border: none;
  font-size: 2.1em;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:hover {
  background: var(--vintage-green);
  transform: scale(1.08) rotate(-8deg);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--vintage-yellow);
  box-shadow: 0 8px 32px var(--vintage-shadow);
  z-index: 200;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.7,1.5,.5,1), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--vintage-red);
  color: #fff;
  border: none;
  font-size: 2em;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 18px 18px 0 0;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.mobile-menu-close:hover {
  background: var(--vintage-green);
  transform: scale(1.08) rotate(-8deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  margin: 40px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 1.5px dashed var(--vintage-border);
  width: 90%;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: var(--vintage-orange);
  border-radius: 8px;
  padding-left: 12px;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
  .cta-btn {
    padding: 10px 16px;
    font-size: 1em;
    margin-left: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    gap: 8px;
    padding: 10px 8px;
  }
}

/* =========================
   Footer
   ========================= */
footer {
  background: var(--vintage-bg-dark);
  border-top: 3px double var(--vintage-border);
  box-shadow: 0 -2px 12px var(--vintage-shadow);
  padding: 32px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: var(--vintage-muted);
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  transition: color 0.18s;
}
.footer-menu a:hover {
  color: var(--vintage-red);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Pacifico', cursive;
  font-size: 1.3em;
  color: var(--vintage-red);
}
.footer-brand img {
  height: 36px;
  width: auto;
  filter: sepia(0.2) contrast(1.1) saturate(1.2);
}
.footer-contact {
  font-size: 0.98em;
  color: var(--vintage-muted);
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  color: var(--vintage-blue);
  font-size: 1.2em;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-social a:hover {
  color: var(--vintage-red);
}
@media (max-width: 900px) {
  footer .container {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   Cards, Lists, Grids
   ========================= */
.destination-list, .tip-list, .info-blocks, .team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.destination-item, .tip-list > div, .info-blocks > div, .team-profiles > div {
  background: var(--vintage-bg-dark);
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--vintage-shadow);
  padding: 18px 14px;
  border: 1.5px solid var(--vintage-border);
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.destination-item img, .tip-list img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--vintage-shadow);
  border: 1.5px solid var(--vintage-border);
}
.destination-item:hover, .tip-list > div:hover, .info-blocks > div:hover, .team-profiles > div:hover {
  box-shadow: 0 8px 32px var(--vintage-shadow);
  transform: scale(1.03) rotate(-1deg);
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.image-grid img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--vintage-shadow);
  border: 1.5px solid var(--vintage-border);
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
}
.image-grid img:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 8px 32px var(--vintage-shadow);
}

.icon-grid {
  display: flex;
  gap: 18px;
  font-size: 1.7em;
  margin: 18px 0 10px 0;
}
.icon-grid span {
  background: var(--vintage-yellow);
  border-radius: 50%;
  padding: 8px 14px;
  border: 1.5px solid var(--vintage-border);
  box-shadow: 0 2px 8px var(--vintage-shadow);
  transition: background 0.18s, transform 0.18s;
  cursor: pointer;
}
.icon-grid span:hover {
  background: var(--vintage-orange);
  transform: scale(1.1) rotate(-3deg);
}

.filter-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}
.filter-controls button {
  background: var(--vintage-yellow);
  color: var(--primary);
  border: 1.5px solid var(--vintage-border);
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 6px 16px;
  margin-right: 4px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.filter-controls button:hover, .filter-controls button.active {
  background: var(--vintage-red);
  color: #fff;
  transform: scale(1.06) rotate(-2deg);
}

/* =========================
   Sliders & Ratings
   ========================= */
.testimonial-slider, .image-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.star-ratings {
  color: var(--star-yellow);
  font-size: 1.2em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
  letter-spacing: 0.08em;
  background: var(--vintage-bg-dark);
  border-radius: 8px;
  padding: 6px 14px;
  display: inline-block;
  box-shadow: 0 2px 8px var(--vintage-shadow);
  border: 1.5px solid var(--vintage-border);
}

/* =========================
   Contact Info & Map
   ========================= */
.contact-info {
  background: var(--vintage-bg-dark);
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--vintage-shadow);
  border: 1.5px solid var(--vintage-border);
  padding: 16px 14px;
  margin-bottom: 18px;
}
.map-embed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}
.map-embed img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--vintage-shadow);
  border: 1.5px solid var(--vintage-border);
}

/* =========================
   Resource Links & FAQ
   ========================= */
.resource-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.resource-links li {
  margin-bottom: 10px;
  font-size: 1.05em;
}
.resource-links a {
  color: var(--vintage-blue);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.18s;
}
.resource-links a:hover {
  color: var(--vintage-red);
}
.faq {
  margin-top: 18px;
}
.faq h3 {
  margin-bottom: 10px;
  color: var(--vintage-green);
}
.faq div {
  margin-bottom: 14px;
  background: var(--vintage-bg-dark);
  border-radius: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--vintage-border);
}

/* =========================
   Cookie Consent Banner
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--vintage-yellow);
  color: var(--vintage-text);
  box-shadow: 0 -2px 16px var(--vintage-shadow);
  border-top: 2px dashed var(--vintage-border);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  font-size: 1em;
  animation: cookieBannerIn 0.6s cubic-bezier(.7,1.5,.5,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  padding: 8px 18px;
  font-size: 1em;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px var(--vintage-shadow);
}
.cookie-banner .accept {
  background: var(--vintage-green);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: var(--vintage-red);
  color: #fff;
  transform: scale(1.05);
}
.cookie-banner .reject {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: var(--vintage-green);
  color: #fff;
  transform: scale(1.05);
}
.cookie-banner .settings {
  background: var(--vintage-yellow);
  color: var(--primary);
  border: 1.5px solid var(--vintage-border);
}
.cookie-banner .settings:hover {
  background: var(--vintage-orange);
  color: #fff;
  transform: scale(1.05);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,62,80,0.25);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--vintage-cream);
  border-radius: 16px;
  box-shadow: 0 8px 32px var(--vintage-shadow);
  border: 2px solid var(--vintage-border);
  padding: 32px 28px;
  min-width: 320px;
  max-width: 95vw;
  animation: cookieModalIn 0.5s cubic-bezier(.7,1.5,.5,1);
}
@keyframes cookieModalIn {
  from { transform: scale(0.8) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  color: var(--vintage-red);
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--vintage-green);
  width: 20px;
  height: 20px;
}
.cookie-category .always-on {
  color: var(--vintage-muted);
  font-size: 0.98em;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  padding: 8px 18px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px var(--vintage-shadow);
}
.cookie-modal-actions .accept {
  background: var(--vintage-green);
  color: #fff;
}
.cookie-modal-actions .accept:hover {
  background: var(--vintage-red);
  color: #fff;
  transform: scale(1.05);
}
.cookie-modal-actions .reject {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-modal-actions .reject:hover {
  background: var(--vintage-green);
  color: #fff;
  transform: scale(1.05);
}
.cookie-modal-actions .close {
  background: var(--vintage-yellow);
  color: var(--primary);
  border: 1.5px solid var(--vintage-border);
}
.cookie-modal-actions .close:hover {
  background: var(--vintage-orange);
  color: #fff;
  transform: scale(1.05);
}

/* =========================
   Miscellaneous
   ========================= */
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
a {
  color: var(--vintage-blue);
  text-decoration: underline;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: var(--vintage-red);
}

hr {
  border: none;
  border-top: 2px dashed var(--vintage-border);
  margin: 32px 0;
}

/* =========================
   Responsive Design
   ========================= */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 1024px) {
  .feature-grid, .destination-list, .tip-list, .info-blocks, .team-profiles, .image-grid {
    gap: 14px;
  }
  .feature-item, .destination-item, .tip-list > div, .info-blocks > div, .team-profiles > div {
    min-width: 160px;
    width: 180px;
  }
  .image-grid img {
    width: 160px;
    height: 110px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .destination-list, .tip-list, .info-blocks, .team-profiles, .image-grid {
    gap: 10px;
  }
  .feature-item, .destination-item, .tip-list > div, .info-blocks > div, .team-profiles > div {
    min-width: 120px;
    width: 140px;
    padding: 10px 6px;
  }
  .image-grid img {
    width: 110px;
    height: 80px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    padding: 18px 6px;
    margin-bottom: 24px;
  }
  .section {
    margin-bottom: 32px;
    padding: 18px 6px;
  }
  .feature-grid, .destination-list, .tip-list, .info-blocks, .team-profiles, .image-grid {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .feature-item, .destination-item, .tip-list > div, .info-blocks > div, .team-profiles > div {
    min-width: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  .image-grid img {
    width: 100%;
    height: 120px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .testimonial-slider, .image-slider {
    flex-direction: column;
    gap: 10px;
  }
  .footer-brand {
    font-size: 1em;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 12px 8px;
    font-size: 0.98em;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
  .cookie-modal-content {
    padding: 18px 8px;
    min-width: 0;
    width: 96vw;
  }
}

/* =========================
   Print Styles
   ========================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .content-wrapper, .container { box-shadow: none !important; border: none !important; }
}

/* =========================
   Accessibility
   ========================= */
:focus {
  outline: 2px dashed var(--vintage-red);
  outline-offset: 2px;
}

/* =========================
   Hide elements utility
   ========================= */
.hide {
  display: none !important;
}
