/* ===== CSS RESET & NORMALIZE ===== */
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;
}
body {
  line-height: 1.5;
  background: #FAF7EF;
  color: #26221B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
}
a {
  color: #127271;
  text-decoration: none;
  background: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #127271;
  outline-offset: 2px;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
button {
  cursor: pointer;
}

/* ====== VINTAGE RETRO COLORS & FONTS ======= */
:root {
  --primary: #206060;
  --accent: #127271;
  --secondary: #F8F8FF;
  --retro-yellow: #f4e285;
  --retro-orange: #e08445;
  --retro-brown: #9e7151;
  --retro-bg: #fbf5e3;
  --white: #fff;
  --black: #26221B;
  --shadow: 0 2px 16px #0001;
  --card-shadow: 0 2px 12px #ad9e8f20;
  --border-radius: 16px;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url('https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm459WlhzQ.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url('https://fonts.gstatic.com/s/opensans/v34/mem8YaGs126MiZpBA-UFVZ0b.woff2') format('woff2');
}


/* ====== GENERAL TYPOGRAPHY SCALE ====== */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--primary);
  letter-spacing: 1px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.1em;
  color: var(--accent);
  letter-spacing: 0.5px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.7em;
  color: var(--primary);
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
p, li, .text-section {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 1em;
}
strong, b {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

.text-section {
  margin-bottom: 24px;
}

.mission-statement {
  background: var(--retro-yellow);
  border-left: 6px solid var(--retro-brown);
  padding: 16px 18px;
  border-radius: 8px;
  margin-top: 8px;
}

/* ======= LAYOUT CONTAINERS & UTILITY CLASSES ======= */
.container {
  width: 94%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--retro-bg);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 5px 20px #9e715133;
  transform: translateY(-4px) scale(1.03);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: var(--retro-yellow);
  box-shadow: 0 2px 8px #dec07833;
  border-radius: var(--border-radius);
  margin-bottom: 28px;
  min-width: 260px;
  max-width: 440px;
  flex: 1 1 300px;
  border-left: 6px solid var(--retro-brown);
  color: #26221B;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--retro-brown);
  font-size: 1.03em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px 18px;
  min-width: 180px;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  border: 2px dashed var(--retro-orange);
  transition: box-shadow .2s, border-color .2s;
}
.feature-item:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px #e0844540;
  transform: translateY(-2px) scale(1.025);
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* ====== HERO SECTION ======= */
.hero {
  background: repeating-linear-gradient(135deg, #f4e285 0px, #f4e285 32px, #f9ddaf 32px, #f9ddaf 64px);
  margin-bottom: 60px;
  padding: 70px 0 60px 0;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  box-shadow: 0 7px 36px -14px #d9a26421;
}
.hero .container {
  align-items: center;
}
.hero-headline {
  font-size: 2.6rem;
  color: var(--primary);
  letter-spacing: 1.5px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
}
.hero-subheadline {
  font-size: 1.18rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 28px;
  color: var(--retro-brown);
}

/* ===== CTA ===== */
.cta {
  background: var(--retro-orange);
  color: var(--white);
  text-align: center;
  box-shadow: 0 3px 14px #e0844522;
  margin-bottom: 0;
}
.cta h2 { color: var(--white); }
.cta p { color: #fffbe6; font-size: 1.11rem; }
.cta .btn-primary {
  background: var(--white);
  color: var(--retro-orange);
  border: none;
  margin-top: 18px;
}
.cta .btn-primary:hover {
  background: var(--retro-yellow);
  color: var(--retro-brown);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 15px 34px;
  border-radius: 26px;
  font-size: 1.09rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px var(--primary)22;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform .14s;
  margin-top: 12px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent);
  color: var(--retro-yellow);
  box-shadow: 0 7px 16px #12727133;
  transform: translateY(-1px) scale(1.035);
}

.btn-secondary, .cookie-btn-secondary {
  display: inline-block;
  background: var(--retro-yellow);
  color: var(--black);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 11px 28px;
  border-radius: 24px;
  font-size: 1rem;
  border: none;
  box-shadow: 0 1px 5px #ad9e8f17;
  margin: 0 8px 0 0;
  transition: background .16s, color .16s, box-shadow .14s, transform .13s;
}
.btn-secondary:hover, .cookie-btn-secondary:hover {
  background: var(--retro-orange);
  color: var(--white);
  box-shadow: 0 4px 20px #e0844540;
  transform: scale(1.04);
}

/* ===== SERVICE & FEATURE LISTS ===== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.service-list li {
  background: var(--retro-bg);
  border-left: 5px solid var(--primary);
  border-radius: 13px;
  box-shadow: 0 1px 6px #12727111;
  padding: 18px 26px 18px 20px;
  margin-bottom: 10px;
  transition: border 0.13s, box-shadow 0.13s, transform 0.13s;
}
.service-list li:hover {
  border-left: 5px solid var(--accent);
  box-shadow: 0 4px 24px #12727117;
  transform: scale(1.018);
}
.service-list h3 {
  font-size: 1.19rem;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--retro-brown);
  background: var(--retro-yellow);
  border-radius: 8px;
  padding: 3px 9px;
  font-size: .99rem;
  letter-spacing: 0.05em;
  margin-left: 12px;
  font-weight: 600;
}

.guide-category-list, .highlighted-guides {
  margin-top: 8px;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlighted-guides li a {
  color: var(--accent);
  text-decoration: underline dotted 2px var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color .12s;
}
.highlighted-guides li a:hover {
  color: var(--retro-orange);
}

ol.step-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1rem;
  counter-reset: retro-step;
  margin-bottom: 18px;
}
ol.step-list li {
  background: var(--retro-bg);
  border-radius: 13px;
  position: relative;
  padding: 30px 20px 24px 60px;
  box-shadow: 0 1px 6px #ad9e8f12;
  margin-bottom: 8px;
}
ol.step-list li:before {
  counter-increment: retro-step;
  content: counter(retro-step);
  position: absolute;
  left: 18px;
  top: 30px;
  background: var(--retro-orange);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: bold;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #e084452f;
}
ol.step-list img {
  width: 32px;
  height: 32px;
  position: absolute;
  left: 18px;
  top: -16px;
  z-index: 1;
}

/* ======= FAQ ACCORDION ======= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item h3 {
  cursor: pointer;
  color: var(--accent);
  margin-bottom: 0;
  position: relative;
  font-size: 1.08rem;
  padding-right: 28px;
  transition: color .15s;
}
.faq-item h3:after {
  content: '\25BC';
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 1.0rem;
  color: var(--retro-brown);
  transition: transform .23s;
}
.faq-item.open h3:after {
  transform: rotate(-180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
  color: #6b4e1a;
  background: #f9edd4;
  border-radius: 0 0 10px 10px;
  transition: max-height .37s cubic-bezier(.77,0,.18,1), padding .2s;
  padding: 0 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 16px 9px 14px 0;
}

/* ======= TESTIMONIALS & SLIDERS ======= */
.testimonials-slider, .testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 10px;
}

@media (max-width:900px) {
  .testimonials-slider, .testimonials-list {
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
  }
}

/* ======= MOBILE MENU ======= */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-left: 40px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--primary);
  letter-spacing: .04em;
  padding: 9px 12px;
  border-radius: 18px;
  transition: color 0.18s, background 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--retro-brown);
  background: var(--retro-yellow);
}
.main-nav .btn-primary {
  margin: 0 0 0 14px;
  padding: 11px 24px;
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-size: 2rem;
  padding: 10px;
  border-radius: 10px;
  margin-left: auto;
  transition: background .16s;
  z-index: 51;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F8F8FF;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.57,0,.21,1);
  box-shadow: 8px 0 72px #12727135;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  color: var(--retro-brown);
  background: none;
  padding: 6px 15px 4px 15px;
  margin: 36px 0 16px 0;
  border-radius: 6px;
  border: none;
  transition: background .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.2rem;
  margin-top: 32px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: none;
  font-size: 1.15rem;
  padding: 10px 0;
  transition: color .15s, background .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-orange);
  background: var(--retro-yellow);
  border-radius: 8px;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 7px;
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 2px;
    margin-left: 0;
    font-size: 0.99rem;
  }
}
@media (max-width: 780px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ====== HEADER & FOOTER ====== */
header {
  background: var(--retro-bg);
  box-shadow: 0 1px 9px #eee6c066;
  position: relative;
  z-index: 35;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 16px 0;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 11px;
}

footer {
  background: var(--primary);
  color: var(--white);
  padding: 44px 0 32px 0;
  margin-top: 60px;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  font-size: 1rem;
  letter-spacing: .01em;
}
footer .container {
  flex-direction: row;
  gap: 42px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--retro-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.05rem;
  transition: color .19s;
  padding: 3px 8px;
  border-radius: 8px;
}
.footer-nav a:hover {
  color: var(--retro-orange);
  background: var(--white);
}
.footer-contact p {
  color: var(--white);
  font-size: 1.09rem;
  margin-bottom: 6px;
}
.footer-contact strong {
  color: var(--retro-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--retro-yellow);
  color: var(--black);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 36px 24px 26px;
  box-shadow: 0 -4px 21px #ad9e8f39;
  z-index: 6000;
  animation: cookieFadeIn .7s cubic-bezier(.63,0,.17,1) 0s 1;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}
.cookie-banner p {
  font-size: 1.09rem;
  line-height: 1.5;
  margin: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn-primary {
  background: var(--accent);
  color: var(--white);
  border-radius: 19px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 8px 24px;
  border: none;
  margin-left: 8px;
  box-shadow: 0 2px 7px #12727128;
  transition: background .13s, color .15s;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: var(--retro-brown);
  color: var(--retro-yellow);
}
.cookie-btn-secondary {
  margin-left: 0;
}
.cookie-btn-link {
  background: none;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 12px;
  border: none;
  text-decoration: underline dotted 2px var(--primary);
  padding: 8px 13px;
  margin-left: 6px;
  transition: background .13s, color .13s;
}
.cookie-btn-link:hover, .cookie-btn-link:focus {
  background: var(--retro-yellow);
  color: var(--retro-orange);
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 53vh;
  transform: translate(-50%, -50%) scale(.97);
  width: 94vw;
  max-width: 420px;
  background: var(--secondary);
  box-shadow: 0 8px 28px #ad9e8f60;
  border-radius: 24px;
  z-index: 7010;
  display: none;
  flex-direction: column;
  gap: 19px;
  padding: 30px 26px 18px 26px;
  animation: cookieFadeInModal .5s cubic-bezier(.62,0,.21,1) 0s 1;
}
@keyframes cookieFadeInModal {
  from { opacity: 0; transform: translate(-50%,-30%) scale(.86); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: var(--primary);
  margin-bottom: 0.7em;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--black);
  background: #f6e1ac;
  padding: 7px 14px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.01rem;
  margin-bottom: 0;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  margin-right: 2px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 6px;
  right: 16px;
  font-size: 1.86rem;
  color: var(--retro-brown);
  background: none;
  border: none;
  padding: 2px 15px 4px 15px;
  border-radius: 10px;
  transition: background .14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--retro-yellow);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    padding: 18px 10px 16px 10px;
  }
  .cookie-banner .cookie-btns {
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }
  .cookie-modal {
    max-width: 97vw;
    padding: 18px 8vw 14px 8vw;
  }
}

/* ========== SPACING & CARD LAYOUT RULES ========= */
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
  margin-right: 0;
}
.card-container, .features-grid, .testimonials-slider, .testimonials-list {
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-grid, .text-image-section {
  gap: 20px;
}
.testimonial-card, .feature-item {
  gap: 15px;
}

/* Each section has enough margin – prevent overlap */
section, .section {
  margin-bottom: 60px !important;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1060px) {
  .container {
    width: 98%;
    max-width: 98vw;
  }
  .hero-headline {
    font-size: 2.2rem;
  }
}
@media (max-width: 900px) {
  footer .container {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .section, section {
    padding: 21px 7vw;
  }
}
@media (max-width: 768px) {
  .hero-headline {
    font-size: 1.65rem;
  }
  .hero-subheadline {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.09rem;
  }
  .container {
    width: 100vw;
    max-width: 100vw;
    padding: 0 1vw;
  }
  .content-wrapper {
    gap: 19px;
  }
  .features-grid, .card-container, .testimonials-slider, .testimonials-list {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  .section, section {
    padding: 18px 2vw;
    margin-bottom: 38px;
  }
  .card, .feature-item, .testimonial-card {
    padding: 18px 10px;
    margin-bottom: 14px;
  }
  .service-list li {
    padding: 14px 6vw 14px 4vw;
  }
}
@media (max-width: 600px) {
  .logo img {
    height: 40px;
  }
  .main-nav {
    font-size: 0.98rem;
  }
  .footer-contact p, .footer-nav a {
    font-size: .95rem;
  }
  h1, h2 {
    font-size: 1.12rem;
  }
  .cookie-modal {
    min-width: unset;
    max-width: 99vw;
  }
}

/* ========== MISC RETRO DECORATIVE ELEMENTS ========== */
hr {
  margin: 32px 0 34px 0;
  border: none;
  border-top: 2.7px dashed var(--retro-brown);
  width: 95%;
}
::-webkit-scrollbar {
  width: 9px;
  background: var(--retro-yellow);
}
::-webkit-scrollbar-thumb {
  background: var(--retro-orange);
  border-radius: 7px;
}

/* ========== THANK YOU / CONFIRMATION SECTION ========= */
.confirmation {
  padding: 60px 0 50px 0;
  background: var(--retro-yellow);
  text-align: center;
}
.confirmation h1 {
  color: var(--primary);
  margin-bottom: 22px;
}
.confirmation .btn-primary {
  margin: 26px auto 0 auto;
  display: inline-block;
}

/* ======= FOCUS STYLES ======= */
*:focus-visible {
  outline: 2.5px dashed var(--accent);
  outline-offset: 3px;
}

/* ======= PRINT STYLES ======= */
@media print {
  header, footer, .main-nav, .mobile-menu, .btn-primary, .btn-secondary, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body, .container, .section {
    background: none !important;
    color: #000 !important;
  }
}
