/* ============== CSS RESET & NORMALIZATION ============== */

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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  /* Retro offwhite background, subtle texture via patterns */
  background-color: #F8F6F2;
}
body {
  line-height: 1.65;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #235174;
  background: #F8F6F2;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
  box-shadow: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, Times, 'Times New Roman', serif;
  color: #235174;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.45rem; margin-bottom: 14px; }
h4 { font-size: 1.15rem; }
p, ul, ol { margin-bottom: 16px; }

/* ============== COLOR PALETTE (VINTAGE RETRO) ============== */
:root {
  --primary: #235174;
  --secondary: #E0C68F;
  --accent: #F8F6F2;
  --brown: #7B5E2E;
  --red: #B95C3D;
  --green: #486948;
  --error: #B13D2B;
  --shadow: rgba(35, 81, 116, 0.05);
}

/* ============== LAYOUT & CONTAINER ============== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F8F6F2;
  border-radius: 28px;
  box-shadow: 0 2px 14px var(--shadow);
}
@media (max-width: 1024px) {
  .container, .content-wrapper, .section {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 6px;
  }
}

/* ============== RETRO PATTERNS/DECOR ============== */
.section, .hero, footer, header {
  /* Subtle vintage spot background */
  background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="9" cy="9" r="1.5" fill="%23E0C68F"/></svg>');
  background-repeat: repeat;
  background-size: 40px 40px;
  background-blend-mode: lighten;
}

/* ========= MAIN NAVIGATION BAR ========= */
header {
  background: var(--primary);
  box-shadow: 0 1px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.main-nav ul li {
  list-style: none;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--secondary);
  padding: 7px 16px;
  border-radius: 16px;
  transition: background 0.15s, color 0.17s;
}
.main-nav a:hover,
.main-nav ul li a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.main-nav > a img {
  height: 48px;
  width: auto;
  margin-right: 10px;
}
.cta-btn {
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.08rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  padding: 11px 38px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(224, 198, 143, 0.08);
  border: 2px solid var(--primary);
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  cursor: pointer;
  margin-left: 12px;
  margin-top: 0;
  text-align: center;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 26px rgba(35, 81, 116, 0.13);
}

/* ============== HERO SECTION ============== */
.hero {
  background: #E0C68F;
  background-image: url('data:image/svg+xml;utf8,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><rect width="80" height="80" fill="%23E0C68F" opacity="0.19"/><ellipse cx="40" cy="40" rx="16" ry="13" fill="%23235174" opacity="0.03"/></svg>');
  border-radius: 0 0 32px 32px;
  margin-bottom: 54px;
  box-shadow: 0 4px 20px var(--shadow);
}
.hero .container {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--primary);
  text-shadow: 0px 2px 0 var(--secondary);
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.04em;
}
.hero .subheadline {
  font-size: 1.25rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .subheadline {
    font-size: 1.08rem;
  }
}

/* ============== FEATURE GRID ============== */
.feature-grid, .unique-experiences-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.feature-item {
  background: #FFFDEE;
  border-radius: 22px;
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 250px;
  padding: 24px 22px 18px 22px;
  margin-bottom: 16px;
  border: 1.5px solid #E0C68F;
  position: relative;
}
.feature-item img {
  height: 48px;
  width: 48px;
  margin-bottom: 6px;
}
.unique-experiences-grid > div {
  background: #F8F6F2;
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 22px 18px;
  margin-bottom: 12px;
  min-width: 200px;
  max-width: 280px;
  flex-grow: 1;
}
@media (max-width: 900px) {
  .feature-grid, .unique-experiences-grid {
    flex-direction: column;
    gap: 12px;
  }
  .feature-item, .unique-experiences-grid > div {
    max-width: 98vw;
  }
}

/* ============== TESTIMONIALS ============== */
.testimonials {
  background: #FFFDEE;
  border-radius: 28px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 14px var(--shadow);
  border: 2px dashed #E0C68F;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222226;
  position: relative;
}
.testimonial-card p {
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #212443;
  max-width: 480px;
}
.testimonial-card span {
  color: #7B5E2E;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  margin-left: 12px;
  letter-spacing: 0.02em;
}
.testimonial-card .stars {
  display: flex;
  flex-direction: row;
  gap: 3px;
  margin-left: 16px;
}
.testimonial-card .stars img {
  width: 21px; height: 21px;
  filter: drop-shadow(0 2px 2px #E0C68F66);
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }
}

/* ==== GENERAL CARD DESIGN ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFDEE;
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 26px 22px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #E0C68F;
  display: flex;
  flex-direction: column;
  /* No position absolute for cards! */
}

/* ============== CTA FINAL & NEWSLETTER ============== */
.cta-final, .cta-newsletter {
  background: var(--primary);
  color: var(--secondary);
  text-align: center;
  border-radius: 24px;
  padding: 40px 20px;
  margin-bottom: 38px;
}
.cta-final h2, .cta-newsletter h2 { color: var(--secondary); }
.cta-final .secondary-text, .cta-newsletter .secondary-text {
  color: #ffd;
  margin-top: 16px;
  font-size: 1.02rem;
}

/* ============== BLOG SECTION ============== */
.blog-list article {
  background: #FFFDEE;
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 20px;
  padding: 18px 22px 14px 22px;
  border: 1.5px solid #E0C68F;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-list article:hover {
  background: #F8F6F2;
  box-shadow: 0 4px 20px var(--shadow);
  transition: box-shadow 0.21s;
}
.blog-list .featured-post {
  background: #E0C68F;
  color: #235174;
  border-radius: 20px;
  padding: 24px 26px;
  margin-bottom: 20px;
  box-shadow: 0 3px 20px var(--shadow);
  font-family: 'Cormorant Garamond', serif;
}
.blog-list a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.17s;
  font-size: 1rem;
}
.blog-list a:hover, .blog-list a:focus {
  color: var(--primary);
  background: #E0C68F57;
  border-radius: 8px;
}
/* ============== FAQ SECTIONS ============== */
.faq ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.faq ul li {
  background: #FFFDEE;
  border-left: 6px solid #E0C68F;
  padding: 12px 24px;
  border-radius: 7px;
  color: #235174;
  font-size: 1.08rem;
  box-shadow: 0 1px 5px var(--shadow);
}
.booking-info, .tour-highlights, .company-bio {
  color: #7B5E2E;
  background: #FFFDEE;
  border-radius: 7px;
  padding: 8px 16px 9px 16px;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/* ============== CONTACT DETAILS ============== */
.contact-details .contact-info p {
  margin-bottom: 12px;
  color: #235174;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.contact-details .note {
  color: #B95C3D;
  font-style: italic;
  font-size: 0.98rem;
}

/* ============== PAGE FOOTER ============== */
footer {
  background: var(--primary);
  color: var(--secondary);
  border-radius: 36px 36px 0 0;
  padding: 40px 0 16px 0;
  font-size: 1rem;
  box-shadow: 0 -2px 16px var(--shadow);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1rem;
  text-decoration: underline;
  opacity: 0.87;
  transition: opacity 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E0C68F;
  opacity: 1;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #FFEAC3;
  font-size: 1.02rem;
}
.footer-info img {
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}
.footer-brand img {
  height: 42px;
  width: auto;
}
.footer-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  opacity: 0.8;
  color: #FFFDE9;
}

/* ============== MOBILE NAVIGATION ============== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 26px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--primary);
  width: 44px;
  height: 44px;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.16s, color 0.16s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 2px 12px var(--shadow);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #F8F6F2;
  box-shadow: 0 8px 32px rgba(35,81,116,0.21);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.56,0,.36,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  font-size: 2rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--secondary);
}
.mobile-nav {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.23rem;
  font-family: 'Cormorant Garamond', serif;
  padding: 10px 38px;
  border-radius: 22px;
  background: none;
  transition: background 0.18s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E0C68F;
}

@media (max-width: 1000px) {
  .main-nav ul {
    gap: 12px;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .cta-btn {
    margin-top: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .footer-nav, .footer-info, .footer-brand {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .footer-brand {
    margin-top: 8px;
  }
}

/* ============== TEXT-IMAGE SECTION (for future proof) ============== */
.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;
  }
}

/* ============== Cookie Consent Banner ============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #E0C68F;
  color: #235174;
  font-family: 'Montserrat', Arial, sans-serif;
  z-index: 4000;
  box-shadow: 0 -4px 28px rgba(35,81,116,0.09);
  border-top: 2px solid #B95C3D;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 14px 14px 14px;
  transition: transform 0.35s cubic-bezier(.83,0,.2,1);
  gap: 10px;
}
.cookie-banner .cookie-banner-inner {
  max-width: 1050px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-banner .cookie-banner-text {
  font-size: 1.09rem;
  flex: 2;
  margin-right: 8px;
  color: #235174;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  background: #235174;
  color: #E0C68F;
  border: none;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 22px;
  border-radius: 20px;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
  font-weight: bold;
  outline: none;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #7B5E2E;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #235174;
  border: 1px solid #B95C3D;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #B95C3D;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner .cookie-banner-inner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* ===== Cookie Modal ===== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35, 81, 116, 0.36);
  z-index: 4010;
  transition: opacity 0.26s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #FFFDEE;
  color: #235174;
  border-radius: 24px;
  box-shadow: 0 6px 34px var(--shadow);
  padding: 33px 22px 26px 22px;
  max-width: 410px;
  min-width: 280px;
  width: 94vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 12px;
  color: #7B5E2E;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
}
.cookie-modal-category label {
  font-family: inherit;
  color: #235174;
}
.cookie-modal-category input[type="checkbox"] {
  appearance: none;
  border-radius: 7px;
  width: 20px; height: 20px;
  border: 2px solid #B95C3D;
  margin-right: 5px;
  background: #fff;
  position: relative;
  outline: none;
  transition: border 0.18s, background 0.18s;
}
.cookie-modal-category input[type="checkbox"]:checked {
  background: #E0C68F;
  border: 2.5px solid #7B5E2E;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  color: #235174;
  font-size: 1.75rem;
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  border: none;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.16s, color 0.17s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  background: #E0C68F;
  color: #B95C3D;
}

/* ============== MISCELLANEOUS ============== */
::-webkit-scrollbar {
  width: 10px; background: #F8F6F2;
}
::-webkit-scrollbar-thumb {
  background: #E0C68F;
  border-radius: 5px;
}

strong { font-weight: 700; font-family: 'Cormorant Garamond', serif; }
.secondary-text {
  font-size: 1.01rem;
  color: #7B5E2E;
  font-style: italic;
}

/* MARKDOWN/LEGAL TEXT SECTIONS (privacy, terms...) */
.privacy-policy, .gdpr, .cookie-policy, .terms-of-use {
  background: #FFFDEE;
  border-radius: 20px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 33px 20px 40px 20px;
  margin-bottom: 32px;
}
.text-section ul {
  margin-left: 16px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.text-section ul li{
  padding-left: 18px;
  margin-bottom: 8px;
  position: relative;
  color: #235174;
}
.text-section ul li:before {
  content:'•';
  position: absolute;
  left: 0; top: 2px;
  color: #B95C3D;
  font-size: 1.27em;
  font-family: 'Cormorant Garamond', serif;
}
.text-section a {
  color: #B95C3D;
  text-decoration: underline;
  font-weight: 600;
}
.text-section a:hover {
  color: #235174;
}

/* ============== SPACING AND FLEXBOX LAYOUTS ============== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
/* All sections/cards: minimum 20px margin! Already applied via gap/margins */

/* Responsive flex direction for content splits */
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .features,
  .card-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* ============== RESPONSIVE HIERARCHY & TYPOGRAPHY ============== */
@media (max-width: 900px) {
  h1 { font-size: 2.24rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.13rem; }
  body { font-size: 15px; }
}
@media (max-width: 600px) {
  main, .hero, .section {
    padding-left: 0;
    padding-right: 0;
  }
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.16rem; }
}

/* ============== THANK-YOU PAGE .confirmation ============== */
.confirmation {
  background: #FFFDEE;
  border-radius: 22px;
  box-shadow: 0 2px 18px var(--shadow);
  padding: 50px 20px 42px 20px;
  margin: 48px 0 34px 0;
}
.confirmation .thank-you-message {
  color: #235174;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 13px;
}
.confirmation .follow-up-info {
  color: #B95C3D;
  background: #FFF7F0;
  border-radius: 12px;
  padding: 8px 13px;
  margin-bottom: 14px;
  font-size: 0.99rem;
}

/* ============== FOCUS, STATES, ACCESSIBILITY ============== */
a:focus, button:focus, .cta-btn:focus {
  outline: 2.5px dashed #B95C3D;
  outline-offset: 2px;
}

/* Hover, active, transitions, micro-interactions */
a, .cta-btn, button, .main-nav a {
  transition: background 0.17s, color 0.18s, box-shadow 0.16s, border 0.18s;
}

/* ============== PRINT SUPPORT ============== */
@media print {
  body * { background: #fff !important; color: #000 !important; box-shadow: none !important; }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  a, a:after { color: #000 !important; }
}

/* ============== UTILITIES ============== */
.hide { display: none !important; }

/* END OF RETRO VINTAGE FLEXBOX-ONLY CSS */
