/* ========================================================
   CSS RESET & NORMALIZE (mobile first, box-sizing border-box)
   ======================================================== */
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,
main,
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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FCF7EF;
  color: #342d25;
  line-height: 1.6;
}
img,
picture,
video {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #21577A;
  text-decoration: none;
  transition: color .2s;
}
a:focus {
  outline: 2px dashed #F4B141;
  outline-offset: 3px;
}
ul, ol {
  margin-left: 2em;
}

/* ===============
   BRAND FONTS
================= */
@import url('https://fonts.googleapis.com/css?family=Fredoka:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', Arial, sans-serif;
  color: #21577A;
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1.18;
}
h1 {
  font-size: 2.375rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
p, li {
  font-size: 1rem;
  color: #3e3623;
}
section h2 {
  text-shadow: 2px 2px 0 #F4B14150, 0 2px 0 #E1D8D1;
}

/* Typography Retro Polish */
body {
  font-family: 'Roboto', Arial, sans-serif;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
  background: #FFFCF7;
  border-radius: 20px;
  box-shadow: 0 4px 16px 0 #e7dbcd22;
}
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 12px;
}
.content-wrapper {
  width: 100%;
}

/* =============
   RETRO COLORS
   ============= */
:root {
  --primary: #21577A;
  --secondary: #F4B141;
  --accent: #F4F7FB;
  --vintage-brown: #B5947A;
  --vintage-orange: #e56927;
  --vintage-cream: #FFF8E0;
  --vintage-red: #D75A4A;
  --vintage-blue: #468fad;
  --vintage-green: #5B9A68;
  --retro-shadow: #c1ada23d;
  --white: #fff;
  --black: #1b1a19;
}

/* ============
   HEADER / NAV
   ============ */
header {
  background: var(--vintage-cream);
  border-bottom: 4px dotted var(--secondary);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 12px;
}
header img[alt="WochenendWunder"] {
  height: 56px;
  width: auto;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--primary);
  background: transparent;
  border-radius: 8px;
  padding: 6px 14px;
  letter-spacing: .5px;
  transition: background .18s, color .18s;
}
.main-nav a[aria-current="page"],
.main-nav a:hover,
.main-nav a:focus {
  background: var(--secondary);
  color: var(--black);
  text-decoration: none;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  outline: none;
  border-radius: 28px;
  padding: 12px 28px;
  box-shadow: 0 2px 8px 0 var(--retro-shadow);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background .18s, color .18s, box-shadow .18s, transform .18s;
  margin-left: 10px;
  text-shadow: 0 1px 5px #fffadc80;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 6px 16px 0 var(--vintage-orange);
  transform: translateY(-2px) scale(1.04);
}

/* =============
   MOBILE MENU
   ============= */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vintage-brown);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  position: relative;
  z-index: 1040;
  margin-left: auto;
  transition: background 0.15s;
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  outline: 2px dashed var(--secondary);
}

/* Hide on desktop by default */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: var(--primary);
  color: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 18px 18px 18px;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.7,0.3,0.24,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.7rem;
  align-self: flex-end;
  margin-bottom: 28px;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .16s;
  box-shadow: 0 2px 8px 0 #c1ada259;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  padding: 0 4px;
}
.mobile-nav a {
  font-size: 1.14rem;
  color: var(--secondary);
  padding: 12px 2px 7px 0;
  border-bottom: 1.5px dashed var(--vintage-orange);
  width: 100%;
  transition: background .14s, color .14s;
  font-family: 'Fredoka', Arial, sans-serif;
}
.mobile-nav a:hover, .mobile-nav a:focus, .mobile-nav a[aria-current="page"] {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 8px;
  padding-left: 6px;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 560px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ===============
   HERO SECTIONS
   =============== */
.hero {
  background:
    repeating-linear-gradient(135deg, #F4B14116 0 4px, transparent 4px 28px),
    var(--vintage-cream);
  border-radius: 0 0 40px 40px/0 0 18px 18px;
  margin-bottom: 48px;
  box-shadow: 0 8px 30px 0 #e7dbcd24;
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
.hero .container {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: center;
  max-width: 750px;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--primary);
}
.hero p {
  font-size: 1.14rem;
  margin-bottom: 28px;
  color: #624f37;
}
.hero .cta-btn {
  font-size: 1.12rem;
}

/* ===============
   FEATURES, CARDS & GRIDS
   =============== */
.features, .services, .about-preview, .tips, .legal {
  background: #FFF8E0;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 6px 18px 0 #e7dbcd22;
}
.feature-grid, .feature-list, .service-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item, .teaser {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 10px 0 #B5947A24;
  padding: 26px 18px 22px 18px;
  min-width: 200px;
  flex: 1 1 232px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .12s, transform .13s;
  border: 1.5px solid #ebdbaa;
}
.feature-item:hover, .teaser:hover {
  box-shadow: 0 10px 36px 0 #d6a7702a;
  transform: translateY(-2px) scale(1.01);
}
.feature-item img, .teaser img {
  width: 42px;
  height: 42px;
  margin-bottom: 1px;
  filter: drop-shadow(0 1.5px 0 #F4B14142);
}
.feature-item h3,
.teaser h3 {
  color: var(--vintage-orange);
  font-size: 1.12rem;
}
.service-teasers {
  gap: 24px;
}

.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}
.feature-icons img {
  height: 32px;
  border-radius: 8px;
  background: var(--vintage-brown);
  padding: 5px;
  box-shadow: 0 2px 6px 0 #c1ada22c;
}

/* .section base spacing as required */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px 0 #B5947A24;
  padding: 24px 18px;
  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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--accent);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 1.5px 8px 0 var(--retro-shadow);
  border: 1.5px solid #ebdbaa;
  color: var(--primary);
  transition: box-shadow .13s, transform .13s;
  min-width: 220px;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.05rem;
  font-style: italic;
}
.testimonial-card span {
  color: #553315;
  font-size: .98rem;
  margin-top: 10px;
}
.testimonial-card:hover {
  box-shadow: 0 5px 28px 0 #c1ada23d;
  transform: translateY(-1px) scale(1.02);
}

/* ============
   CTA SECTIONS
   ============ */
.cta {
  background: var(--vintage-blue);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 7px 26px 0 #b5947a22;
  text-align: center;
}
.cta h2,
.cta p {
  color: #fff !important;
  text-shadow: 0 1px 10px #15436430;
}
.cta .cta-btn {
  background: var(--secondary);
  color: var(--vintage-blue);
  margin-top: 18px;
}
.cta .cta-btn:hover {
  background: #fff;
}

/* ==============
   FOOTER & CONTACTS
   ============= */
footer {
  background: var(--primary);
  color: #FFF8E0;
  padding: 38px 0 13px 0;
  border-radius: 18px 18px 0 0/6px 6px 0 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1rem;
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 550;
  letter-spacing: .22px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 10px;
}
.contact-footer p {
  font-size: .97rem;
  color: #fff8e0;
  margin-right: 12px;
}
.contact-footer img {
  height: 18px; width: 18px; vertical-align: middle; margin-right: 6px;
}
footer p:last-child {
  text-align: center;
  color: #e3ccaf;
  font-size: .95rem;
  margin-top: 17px;
}

/* ============
   TRUST SIGNALS
   ============ */
.trust-signals {
  background: #F4F7FB;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 #21577a0c;
  padding-bottom: 22px;
  margin-bottom: 60px;
}
.trust-signals ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding-left: 0;
  justify-content: flex-start;
}
.trust-signals li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #21577A;
  font-size: 1.02rem;
  font-family: 'Fredoka', Arial, sans-serif;
  background: #fff;
  border-radius: 11px;
  padding: 12px 18px;
  box-shadow: 0 1.5px 8px 0 #c1ada22b;
}
.trust-signals img {
  height: 28px;
}

/* ============
   CONTACT PAGE
   ============ */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-bottom: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.address, .phone-email, .hours {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 156px;
  background: #fff;
  padding: 15px 13px;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 #b5947a16;
  border: 1.2px solid #ebdbaa;
}
.address img, .hours img {
  height: 22px;
}

.cta-block {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* =================
   LEGAL PAGE SECTIONS
================== */
.legal {
  background: #FFFCF7;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 #21577a13;
  padding-bottom: 35px;
}
.legal h1 {
  font-size: 2.05rem;
  margin-bottom: 14px;
}
.legal h2 {
  font-size: 1.21rem;
  margin-bottom: 12px;
}
.legal ul, .legal p {
  font-size: 1rem;
  color: #3e3623;
}

/* ===============
   TIPS SECTION
   =============== */
.tips {
  background: #FFF8E0;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 #e7dbcd22;
  margin-bottom: 60px;
}
.tips ul {
  color: #21577A;
  font-size: 1.06rem;
  padding-left: 18px;
  margin-top: 10px;
}
.tips li {
  margin-bottom: 11px;
  line-height: 1.48;
}
.tips a { color: var(--vintage-orange); font-weight: 600; }

/* ========
   WEATHER WIDGET (wetter-tipps.html)
=========== */
.weather-widget {
  background: var(--vintage-blue);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 2px 10px 0 #21577a25;
  font-size: 1.13rem;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.weather-widget img {
  height: 32px;
}
.what-to-pack, .alternative-section {
  background: #FFF8E0;
  border-radius: 12px;
  margin-top: 12px;
  padding: 15px 18px;
  box-shadow: 0 1px 6px 0 #21577a10;
}
.what-to-pack h3,
.alternative-section h3 {
  color: var(--vintage-blue);
  font-size: 1.07rem;
  margin-bottom: 6px;
}

/* ===============
   THANK YOU PAGE
   =============== */
.thank-you {
  background: linear-gradient(135deg, #F4B14111 36%, #FFF8E0 90%);
  border-radius: 22px;
  margin-bottom: 42px;
  box-shadow: 0 7px 30px 0 #e7dbcd19;
  text-align: center;
  padding-bottom: 30px;
}
.thank-you h1 {
  color: var(--vintage-orange);
  font-size: 2rem;
}

/* ===============
   COOKIE CONSENT
   =============== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #FFF8E0;
  color: #342d25;
  border-top: 3.5px dotted #F4B141;
  box-shadow: 0 -4px 32px 0 #b5947a23;
  padding: 18px 16px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 3500;
  min-height: 62px;
  font-size: 1rem;
  animation: cookie-banner-in 0.54s cubic-bezier(.84,0.11,.73,1.02);
}
@keyframes cookie-banner-in {
  from { opacity: 0; transform: translateY(55px); }
  to   { opacity: 1; transform: translateY(0);  }
}
.cookie-banner .cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: 'Fredoka', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 690;
  margin-right: 8px;
  margin-bottom: 4px;
  cursor: pointer;
  transition: background .16s, color .16s, transform .14s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover,
.cookie-banner .cookie-btn.accept:focus {
  background: var(--vintage-blue);
  color: #fff;
  transform: scale(1.03);
}
.cookie-banner .cookie-btn.reject {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-banner .cookie-btn.reject:hover,
.cookie-banner .cookie-btn.reject:focus {
  background: #aa2f22;
  color: #fff;
  transform: scale(1.03);
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: var(--accent);
  border-color: var(--vintage-red);
  color: var(--vintage-red);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw; height: 100vh;
  background: #21577a77;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #FFF8E0;
  color: #1b1a19;
  border-radius: 22px;
  box-shadow: 0 6px 32px 0 #b5947a2f;
  padding: 36px 27px 23px 27px;
  min-width: 296px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  opacity: 0;
  transform: scale(.98) translateY(35px);
  transition: opacity .23s, transform .23s;
}
.cookie-modal-overlay.open .cookie-modal {
  opacity: 1; transform: scale(1) translateY(0);
}
.cookie-modal h2 {
  font-size: 1.21rem;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1.01rem;
  padding: 11px 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 12px;
  gap: 17px;
}
.cookie-modal .toggle {
  width: 40px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie-modal .toggle input[type="checkbox"] {
  display: none;
}
.cookie-modal .slider {
  display: block;
  width: 40px;
  height: 24px;
  background: #e7dbcd;
  border-radius: 12px;
  position: relative;
  transition: background .14s;
}
.cookie-modal .slider:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 6px 0 #b5947a2b;
  position: absolute;
  left: 3px; top: 3px;
  transition: left .14s;
}
.cookie-modal .toggle input[type="checkbox"]:checked + .slider {
  background: var(--secondary);
}
.cookie-modal .toggle input[type="checkbox"]:checked + .slider:before {
  left: 19px;
}
.cookie-modal .note {
  font-size: .94rem;
  color: #613a02;
  margin-bottom: 10px;
  margin-left: 2px;
}
.cookie-modal .close {
  position: absolute;
  right: 18px;
  top: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.23rem;
  cursor: pointer;
  transition: background .14s, color .14s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-modal .cookie-btn {
  margin-top: 21px;
}

/* ===============
   MICRO-ANIMATIONS
   =============== */
.cta-btn,
.card,
.feature-item,
.teaser,
.testimonial-card,
.cookie-btn,
.footer-nav a,
.main-nav a {
  transition: background .16s, color .16s, box-shadow .16s, transform .16s, border .16s;
}
.cta-btn:active, .cookie-btn:active,
.main-nav a:active, .footer-nav a:active {
  transform: scale(0.97);
}
.feature-item:focus-within,
.teaser:focus-within {
  box-shadow: 0 6px 24px 0 var(--vintage-orange);
  border-color: var(--vintage-orange);
}

/* ===============
   RESPONSIVE DESIGN
   =============== */
@media (max-width: 1024px) {
  .feature-grid, .feature-list, .service-teasers, .card-container, .content-grid {
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
  }
  .feature-item, .teaser {
    flex: 1 1 46%;
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.61rem;
  }
  .hero h1 {
    font-size: 1.33rem;
  }
  .section, section {
    padding: 28px 5px;
  }
  .feature-grid, .feature-list, .service-teasers, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .teaser {
    min-width: 140px;
  }
  .testimonial-card {
    padding: 16px;
  }
  .about-preview, .cta, .trust-signals, .features, .tips, .legal, .services {
    padding-left: 6px;
    padding-right: 6px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .contact-details {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .section, section {
    margin-bottom: 32px;
    padding: 20px 3px;
  }
  .footer-nav {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
  .contact-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 7px;
  }
  .hero {
    min-height: 100px;
    border-radius: 0 0 16px 16px/0 0 9px 9px;
    margin-bottom: 18px;
  }
}

/* ===============
   SCROLLBARS
   =============== */
::-webkit-scrollbar {
  width: 10px;
  background: #FFF8E0;
}
::-webkit-scrollbar-thumb {
  background: #F4B14199;
  border-radius: 5px;
}

/* ===============
   ACCESSIBILITY
   =============== */
:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 2px;
}

/* =======================
   REMOVE GRID/COLUMNS
   ======================= */
/* Ensured: No use of grid, columns, clamp(), break-inside, etc. Only Flexbox used for all content containers */


/* ===============
   END OF STYLE.CSS
   =============== */
