/* --- 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #f9f7f0;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button, input, textarea, select { font-family: inherit; }
ul { list-style: none; }
footer p {
  color: white;
}

/* --- VINTAGE RETRO BASE COLOR SCHEME & FONTS --- */
:root {
  --primary: #23446D;
  --secondary: #C6E2E9;
  --accent: #FAD02E;
  --retro-beige: #f9f7f0;
  --retro-dark: #3B2E25;
  --retro-red: #B85042;
  --retro-blue: #1B3A4B;
  --retro-orange: #F39237;
  --retro-font-display: 'Montserrat', 'Futura', 'Arial Rounded MT Bold', Arial, sans-serif;
  --retro-font-body: 'Open Sans', 'Verdana', 'Tahoma', Arial, sans-serif;
}
body {
  background: var(--retro-beige);
  color: var(--retro-dark);
  font-family: var(--retro-font-body);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--retro-font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary);
  margin-bottom: 0.6em;
}
h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 1rem; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 0.75rem; }
h3 { font-size: 1.3rem; line-height: 1.18; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; }
p, li, label, input, span {
  font-size: 1rem;
  color: var(--retro-dark);
}
strong, b { color: var(--retro-red); }
em, i { color: var(--retro-blue); font-style: italic; }


/* --- LAYOUT CONTAINERS & SPACING (Flex Only) --- */
.container {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff9e9;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(59,46,37,0.10), 0 2px 8px rgba(250,208,46,0.07);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}


/* --- HEADER & NAVIGATION --- */
header {
  background: var(--retro-orange);
  box-shadow: 0 2px 6px rgba(59,46,37,0.10);
  position: sticky;
  top: 0;
  z-index: 102;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 75px;
}
.logo img { width: 130px; height: auto; display: block; }
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.main-nav a {
  font-family: var(--retro-font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--primary);
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.16s, color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--retro-red);
  border-bottom: 2px solid var(--accent);
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--retro-dark) !important;
  font-family: var(--retro-font-display);
  font-size: 1.13rem;
  padding: 13px 36px;
  border-radius: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 12px rgba(59,46,37,0.09);
  border: none;
  transition: background 0.23s, box-shadow 0.18s, color 0.15s;
  margin-left: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(59,46,37,0.17);
}


/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 10px;
  z-index: 110;
}
.mobile-menu {
  position: fixed;
  background: #fff9e9;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.79,-0.01,.41,1.12);
  z-index: 200;
  box-shadow: 0 8px 32px rgba(59,46,37,0.24);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 22px 22px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--retro-red);
  font-size: 2.2rem;
  border: none;
  margin-bottom: 28px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--retro-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.17s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-red);
  border-bottom: 2px solid var(--accent);
}

@media (max-width: 1024px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  header .container { gap: 8px; min-height: 54px; }
  .logo img { width: 105px; }
}


/* --- HERO SECTION --- */
.hero {
  background: var(--secondary);
  background-image: repeating-linear-gradient(135deg, #fad02e11 0 20px, #C6E2E9 20px 40px);
  border-bottom: 8px solid var(--accent);
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 48px 10px 40px 10px;
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 0;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--retro-red);
  text-shadow: 2px 2px 0 #fad02e77;
}
.hero p {
  font-size: 1.18rem;
  color: var(--retro-dark);
  margin-bottom: 28px;
}
.hero .cta-btn {
  margin-left: 0;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .hero .container { min-height: 180px; padding: 25px 6px; }
  .hero h1 { font-size: 1.6rem; }
}


/* --- FLEXBOX TEMPLATES & CONTENT GRIDS --- */
/* Feature Grid on Home */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.feature-grid li {
  background: #fff7e1;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(59,46,37,0.08);
  border: 2px solid #f0e2b8;
  padding: 22px 20px 16px 20px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 305px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: box-shadow 0.2s, border 0.18s;
}
.feature-grid li img { width: 36px; height: 36px; margin-bottom: 10px; }
.feature-grid li h3 {
  color: var(--retro-red);
  font-size: 1.12rem;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 8px 28px rgba(234,129,35,0.11);
  border: 2.5px solid var(--accent);
  cursor: pointer;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #f3ece2;
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(59,46,37,0.08);
  border: 2px solid #f6d57b;
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 310px;
  margin-bottom: 20px;
  padding: 24px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.18s, border 0.17s, transform 0.2s;
}
.service-card h3 { margin-bottom: 9px; color: var(--retro-blue); font-size: 1.13rem; font-weight: bold; }
.service-card .price {
  margin-top: 8px;
  padding: 0 9px;
  background: var(--accent);
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.01rem;
  color: var(--retro-dark);
}
.service-card:hover, .service-card:focus-within {
  border: 2.5px solid var(--retro-red);
  box-shadow: 0 9px 28px #fad02e22;
  transform: translateY(-3px) scale(1.02);
}

.benefit-list, .test-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}
.benefit-list li, .test-list li {
  background: #ffeeba;
  border-radius: 8px;
  padding: 10px 12px 10px 36px;
  color: var(--retro-dark);
  position: relative;
  min-width: 180px;
  font-size: 1rem;
}
.benefit-list li img {
  position: absolute;
  left: 10px; top: 12px;
  width: 18px; height: 18px;
  margin-right: 10px;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.team-member {
  background: #e8d8cd;
  border-radius: 14px;
  border: 1.5px solid var(--retro-orange);
  box-shadow: 0 2px 8px rgba(234,129,35,0.10);
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 290px;
  margin-bottom: 20px;
  padding: 20px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: border 0.17s;
}
.team-member h3 { color: var(--primary); font-size: 1.1rem; }
.team-member em { color: var(--retro-blue); font-size: 1rem; }
.team-member:hover, .team-member:focus-within { border: 2.5px solid var(--accent); }

/* Blog Grid */
.blog-post-grid, .featured-blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.blog-post-preview {
  background: #f7e7d4;
  border-radius: 13px;
  border: 1px solid #f6d57b;
  padding: 20px 17px 14px 17px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(250,208,46,0.06);
  transition: box-shadow 0.15s, border 0.19s;
}
.blog-post-preview h3 { font-size: 1.12rem; margin-bottom: 6px; color: var(--retro-red); }
.blog-post-preview a {
  color: var(--primary);
  font-family: var(--retro-font-display);
  font-weight: bold;
  padding-left: 0;
  border-bottom: 2px dotted var(--accent);
  align-self: flex-start;
  transition: color 0.17s, border-color 0.15s;
}
.blog-post-preview a:hover {
  color: var(--retro-orange);
  border-color: var(--retro-orange);
}
.blog-post-preview:hover, .blog-post-preview:focus-within {
  border: 2px solid var(--retro-orange);
  box-shadow: 0 4px 20px #fad02e11;
}

.categories {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.99rem;
}
.categories span {
  background: #fae2a7;
  color: var(--retro-dark);
  border-radius: 8px;
  padding: 4px 13px;
  margin: 0 2px;
  font-size: 0.98rem;
}
.search-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.search-bar input[type=text], input[type=email] {
  padding: 9px 14px;
  border-radius: 7px;
  border: 1.5px solid #d2c8bc;
  background: #f7f4ed;
  font-size: 1rem;
  margin-left: 6px;
  max-width: 265px;
  transition: border-color 0.17s;
}
.search-bar input:focus, input[type=email]:focus {
  border-color: var(--accent);
  outline: none;
}

.subscription {
  background: var(--accent);
  border-top: 8px solid var(--primary);
  border-bottom: 8px double var(--primary);
}
.subscription .content-wrapper {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 24px 20px;
  text-align: center;
}
.subscription label, .subscription span { font-size: 1rem; }
.subscription input[type=email] {
  margin: 12px 0 10px 0;
  padding: 9px 16px;
  border-radius: 9px;
  border: 2px solid var(--primary);
  font-size: 1.05rem;
  max-width: 340px;
  background: #fff9e1;
  color: var(--retro-dark);
}
.subscription input[type=email]:focus {
  border-color: var(--retro-red);
}

/* CTA Section */
.cta {
  background: var(--retro-red);
  color: #fff;
  border-top: 8px dashed var(--accent);
}
.cta .content-wrapper {
  background: transparent;
  color: #fff;
  text-align: center;
  box-shadow: none;
  border-radius: 0;
}
.cta .cta-btn {
  background: #fff;
  color: var(--retro-red)!important;
  font-weight: 700;
  margin-top: 20px;
  border: 2px solid #fff;
  box-shadow: 0 3px 20px #fff6e9a2;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: var(--primary);
  color: #fff !important;
  border: 2px solid var(--primary);
}

/* Text Image Sections & General Content Grids */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Testimonial Section */
.testimonial-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 28px 30px 22px 28px;
  border-radius: 18px;
  box-shadow: 0 2px 12px #23446d0a, 0 1px 5px #fad02e0c;
  border: 2px solid var(--secondary);
  min-width: 245px;
  max-width: 400px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border 0.15s, transform 0.15s;
  color: var(--retro-dark);
}
.testimonial-card p {
  font-size: 1.03rem;
  color: var(--primary);
  font-family: var(--retro-font-display);
  font-weight: 600;
  text-align: center;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--retro-blue);
  font-style: italic;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 30px #fad02e13;
  border: 2.5px solid var(--retro-red);
  transform: scale(1.025);
}

/* THANK YOU PAGE */
.thank-you .content-wrapper {
  text-align: center;
  background: #e8d8cd;
  box-shadow: 0 2px 17px #fad02e25;
}
.thank-you h1 {
  color: var(--retro-red);
  font-size: 2.1rem;
  text-shadow: 1px 1px 0 #fad02e44;
}


/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  border-top: 8px solid var(--accent);
  padding: 0;
  font-size: 0.99rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 20px 18px 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.91;
  font-family: var(--retro-font-display);
  font-size: 1.04rem;
  font-weight: 500;
  margin-bottom: 6px;
  transition: color 0.15s, opacity 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  opacity: 1;
}
.footer-nav .cta-btn {
  margin-left: 0;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 10px 28px;
  background: var(--accent);
  color: var(--primary) !important;
  border: none;
  font-size: 1.08rem;
  font-weight: 700;
}
.footer-contact {
  font-size: 1rem;
  color: #fee;
  line-height: 1.44;
  margin-bottom: 0;
}
.footer-contact a { color: #fff; text-decoration: underline dotted var(--accent); }
.footer-branding {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 8px;
  font-size: 1.1rem;
  font-family: var(--retro-font-display);
}
.footer-branding img { width: 48px; height: 48px; }


/* --- RESPONSIVE --- */
@media (max-width: 900px) {
 .feature-grid, .benefit-list,
 .service-list, .team-list,
 .card-container, .blog-post-grid,
 .featured-blog-posts, .testimonial-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
 }
 .content-wrapper { padding: 32px 10px; }
}
@media (max-width: 700px) {
  .container { padding: 0 5px; }
  .content-wrapper { padding: 20px 4px; }
  .section { padding: 18px 4px; }
  .hero .container { padding: 14px 2px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.4rem !important; }
  h2 { font-size: 1.08rem !important; }
  .testimonials-section, .feature-grid, .service-list,
  .team-list, .benefit-list, .featured-blog-posts, .blog-post-grid {
    gap: 14px;
  }
  .testimonial-card, .service-card, .team-member, .blog-post-preview {
    padding: 13px 9px 12px 9px;
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 540px) {
  .footer-branding { flex-direction: column; gap: 5px; text-align: center; }
}

/* TEXT-IMAGE SECTION MOBILE */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}


/* --- BUTTONS & MICRO-INTERACTIONS --- */
button, .cta-btn, input[type=submit] {
  cursor: pointer;
  outline: none;
  border: none;
  transition: background 0.17s, color 0.19s, box-shadow 0.17s, transform 0.16s;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2.5px dashed var(--accent);
  outline-offset: 3px;
}
input[type=submit]:hover, input[type=submit]:focus {
  background: var(--primary);
  color: #fff;
}


/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff9e1;
  border-top: 4px solid var(--accent);
  box-shadow: 0 -2px 10px #23446d22;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 22px 26px;
  gap: 24px;
  font-size: 1rem;
  animation: cookieSlideIn 0.6s cubic-bezier(.14,.92,.61,1.03);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(32px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  color: var(--primary);
  max-width: 780px;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner .cookie-btn {
  padding: 8px 20px;
  border-radius: 25px;
  font-family: var(--retro-font-display);
  font-weight: bold;
  font-size: 1.01rem;
  border: 2px solid var(--primary);
  background: var(--accent);
  color: var(--primary);
  margin: 0 2px;
  transition: background 0.15s, color 0.18s, border-color 0.15s;
}
.cookie-banner .cookie-btn.cookie-accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .cookie-btn.cookie-accept:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .cookie-btn.cookie-reject {
  background: #fff;
  color: var(--retro-red);
  border-color: var(--retro-red);
}
.cookie-banner .cookie-btn.cookie-reject:hover {
  background: var(--retro-red);
  color: #fff;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: var(--secondary);
  color: var(--retro-blue);
  border-color: var(--retro-blue);
}
.cookie-banner .cookie-btn.cookie-settings:hover {
  background: var(--retro-blue);
  color: #fff;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; right: 0; bottom: 0;
  display: flex;
  background: rgba(59,46,37,0.22);
  align-items: center;
  justify-content: center;
  animation: modalOverlayIn 0.3s;
}
@keyframes modalOverlayIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff9e1;
  border-radius: 20px;
  box-shadow: 0 6px 32px #23343d25;
  border: 2.5px solid var(--accent);
  min-width: 320px;
  max-width: 99vw;
  padding: 32px 30px 22px 30px;
  color: var(--primary);
  animation: modalShow 0.27s cubic-bezier(.53,.03,.75,.69);
}
@keyframes modalShow { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cookie-modal h2 {
  color: var(--retro-blue);
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: var(--retro-font-display);
  margin-right: 13px;
}
.cookie-switch {
  appearance: none;
  outline: none;
  width: 36px;
  height: 21px;
  background: #eee;
  border-radius: 13px;
  transition: background 0.15s;
  position: relative;
  border: 1.5px solid var(--accent);
  cursor: pointer;
}
.cookie-switch:checked {
  background: var(--accent);
  border-color: var(--retro-blue);
}
.cookie-switch:disabled {
  background: #c2c0bc;
  cursor: not-allowed;
}
.cookie-switch:after {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s;
  box-shadow: 0 1px 4px #1111;
}
.cookie-switch:checked:after {
  left: 16px;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal-close {
  background: transparent;
  color: var(--retro-red);
  font-size: 2rem;
  border: none;
  position: absolute;
  right: 18px;
  top: 12px;
}
@media (max-width: 750px) {
  .cookie-banner { flex-direction: column; gap: 10px; padding: 16px 9px; align-items: flex-start; }
  .cookie-modal { padding: 16px 9px 13px 11px; }
}

/* --- GENERAL UTILS --- */
hr { border: 1.5px dashed var(--secondary); margin: 28px 0; }
::-webkit-scrollbar { width: 10px; background: var(--secondary); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 17px; }

/* Patterned separators (decorative vintage element) */
.pattern-sep {
  width: 100%;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 20px, var(--retro-beige) 20px 40px);
  opacity: 0.32;
  margin: 35px 0 23px 0;
  border-radius: 7px;
}

/* --- ACCESSIBILTY --- */
:focus-visible {
  outline: 2.5px dashed var(--retro-orange);
  outline-offset: 2px;
}

/* Hide visually but keep for screenreaders */
.sr-only {
  position: absolute;
  left: -2000vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* === END === */
