/* RESET & BASE TYPOGRAPHY (Vintage Retro Inspired) */
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,
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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html, body {
  height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: #FAF3E6;
  color: #27462D;
  min-height: 100vh;
}
body {
  line-height: 1.8;
  background-color: #F5F2EC;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #236A91;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #d98650;
  outline: none;
}
ul, ol {
  margin: 1em 0 1em 2em;
}

/* VINTAGE RETRO COLORS & PATTERNS */
:root {
  --primary: #205C3B;
  --secondary: #F5F7F4;
  --accent: #D98650;
  --brown: #89673A;
  --yellow: #F5D072;
  --retro-bg: #FAF3E6;
  --retro-text: #392104;
  --retro-shadow: rgba(40, 25, 7, 0.15);
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Poppins', Helvetica, Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* GLOBAL CONTAINER & FLEX LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0; /* container only spaces sections */
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffbe9;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 var(--retro-shadow);
  border: 3px double var(--yellow);
}

@media (max-width: 980px) {
  .container {
    padding: 0 8px;
  }
  .section { padding: 32px 8px; }
}
@media (max-width: 768px) {
  .section { margin-bottom: 36px; padding: 28px 4px; }
  .content-wrapper { gap: 22px; }
}


/* TYPOGRAPHY SCALE & VINTAGE STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 1px 1px 0px var(--yellow), 0px 2px 3px var(--retro-shadow);
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; margin-top: 16px; margin-bottom: 10px; }
h4 { font-size: 1.18rem; margin-bottom: 7px; }
h5, h6 { font-size: 1rem; }
p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--retro-text);
}
.subheadline {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 20px;
  text-shadow: 0 1px 0px #fffad5;
}

strong, b {
  font-weight: 700;
  color: var(--primary);
}
em, i {
  font-style: italic;
  color: var(--brown);
}

/* Patterns & Ornaments - Subtle Vintage Border for Big Titles */
h1, h2 {
  position: relative;
  padding-bottom: 0.25em;
  margin-bottom: 1em;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--yellow), var(--accent) 6px, var(--yellow) 12px, transparent 12px);
  border-radius: 5px;
  margin-top: 14px;
  margin-left: 0;
}

/* FLEX CARD PATTERNS AND ALIGNMENTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  background: var(--secondary);
  border-radius: 18px;
  padding: 28px 22px 28px 22px;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px var(--retro-shadow);
  border: 2px solid var(--yellow);
  position: relative;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .content-grid { flex-direction: column; gap: 16px; }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #fffef9;
  box-shadow: 0 2px 10px var(--retro-shadow);
  margin-bottom: 20px;
  border: 2px solid var(--yellow);
}
.testimonial-card p {
  color: #351c09;
}
.testimonial-card em {
  color: var(--accent);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--retro-bg);
  border: 2px dashed var(--brown);
  border-radius: 13px;
  padding: 18px 16px 16px 16px;
  box-shadow: 0 2px 11px 0 var(--retro-shadow);
  min-width: 210px;
  max-width: 320px;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  filter: sepia(0.5) hue-rotate(-12deg) brightness(0.92);
}
@media (max-width: 670px) {
  .feature-item { min-width: unset; max-width: 100%; }
}

/* BUTTONS & CTA LINKS */
.cta-button, .cta-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  background: var(--yellow);
  color: var(--primary);
  border-radius: 22px;
  padding: 11px 32px 11px 28px;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 0;
  box-shadow: 0 2px 8px 0 var(--retro-shadow);
  text-decoration: none;
  margin-top: 16px;
  margin-bottom: 8px;
  transition: transform 0.18s, background 0.22s, box-shadow 0.18s;
  cursor: pointer;
}
.cta-button:hover, .cta-link:hover, .cta-button:focus, .cta-link:focus {
  background: var(--accent);
  color: #fffefb;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px 0 var(--retro-shadow);
}
.cta-link {
  background: transparent;
  color: var(--accent);
  font-size: 1.13rem;
  padding: 0;
  margin-left: 0; margin-right: 10px;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 2px dotted var(--accent);
}
.cta-link:hover, .cta-link:focus { background: var(--yellow); color: var(--primary); box-shadow: 0 1px 8px var(--retro-shadow); }

button, .button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 20px;
  background: var(--primary);
  border: none;
  color: #fffbe9;
  padding: 9px 23px;
  margin: 8px 6px 4px 0;
  transition: background 0.17s, color 0.15s, transform 0.2s;
  box-shadow: 0 2px 8px var(--retro-shadow);
  cursor: pointer;
}
button:hover, .button:hover,
button:focus, .button:focus {
  background: var(--accent);
  color: #fffaf4;
  outline: none;
}

/* HEADER & NAVIGATION (INCLUDING MOBILE MENU) */
header {
  background: var(--primary);
  color: #fffbe9;
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  box-shadow: 0 3px 20px 0 var(--retro-shadow);
  z-index: 50;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 0;
}
header img {
  height: 52px;
  width: auto;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-left: 44px;
}
.main-nav a {
  color: #fffbe9;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.09rem;
  letter-spacing: 0.05em;
  padding: 7px 8px;
  border-radius: 4px;
  transition: background 0.13s, color 0.16s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--yellow);
  color: var(--primary);
  text-decoration: underline wavy 2px var(--accent);
}
header .cta-button {
  background: var(--yellow);
  color: var(--primary);
  margin-left: 30px;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fffbe9;
  font-size: 2rem;
  border: none;
  border-radius: 14px;
  padding: 8px 18px;
  margin-left: 12px;
  cursor: pointer;
  position: relative;
  z-index: 105;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--yellow);
  color: var(--primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-bg);
  box-shadow: 0 10px 46px 0 var(--primary);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.7,.4,.34,1.08);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  color: var(--primary);
  font-size: 2.8rem;
  border: none;
  align-self: flex-end;
  margin: 25px 22px 12px 0;
  cursor: pointer;
  z-index:1101;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 36px 24px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.26rem;
  color: var(--primary);
  background: transparent;
  border-radius: 9px;
  padding: 12px 10px;
  margin: 2px 0;
  transition: background 0.16s, color 0.14s, padding 0.2s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fffbe9;
  padding-left: 22px;
}
@media (max-width: 1020px) {
  .main-nav, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
}


/* HERO & SECTION LAYOUTS */
.hero {
  background: var(--retro-bg);
  /* subtle vintage fading edge */
  border-bottom: 4px dotted var(--yellow);
  margin-bottom: 0;
  padding-top: 28px;
  padding-bottom: 7px;
  box-shadow: 0 3px 22px 0 var(--retro-shadow);
}
.hero h1 {
  color: var(--accent);
  font-size: 2.9rem;
  text-shadow: 1px 2px 0 var(--yellow), 1px 5px 7px var(--retro-shadow);
  margin-bottom: 10px;
}
.hero .subheadline {
  color: var(--brown);
  font-size: 1.27rem;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.1rem; }
  .cta-button, .cta-link { font-size: 1rem; padding: 9px 17px; }
}

/* FEATURES FLEX GRID */
.features {
  margin-bottom: 34px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .feature-grid {justify-content: center; gap: 17px;}
}

/* ARTICLE LIST PREVIEWS */
.article-snippets, .article-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 16px 0;
}
.article-snippets article, .article-listings article {
  background: #fffefa;
  border: 2px solid var(--yellow);
  border-radius: 12px;
  box-shadow: 0 2px 7px var(--retro-shadow);
  padding: 18px 13px 17px 18px;
  min-width: 220px;
  max-width: 350px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.article-snippets article h3, .article-listings article h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.article-snippets article a, .article-listings article a {
  font-family: var(--font-body);
  color: var(--accent);
  font-size: 0.99rem;
  margin-top: 7px;
  align-self: flex-end;
  text-decoration: underline;
}
.article-snippets article a:hover,
.article-listings article a:hover { color: var(--primary); }

@media (max-width: 670px) {
  .article-snippets, .article-listings { flex-direction: column; gap: 13px; }
  .article-snippets article, .article-listings article { max-width: 100%; }
}

/* TOPIC FILTERS (RETRO BUTTONS) */
.topic-filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 18px 0 10px 0;
  font-size: 1rem;
}
.topic-filters span {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  margin-right: 6px;
}
.topic-filters a {
  display: inline-block;
  background: var(--yellow);
  color: var(--primary);
  border-radius: 11px;
  border: 2px solid var(--brown);
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-right: 2px;
  transition: background 0.17s, color 0.14s, border-color 0.19s;
  cursor: pointer;
}
.topic-filters a:hover, .topic-filters a:focus {
  background: var(--accent);
  color: #fffbe9;
  border-color: var(--accent);
}

/* ABOUT, TEAM, IMPACT, FAQ */
.team-bios, .success-stories, .impact-stats, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.team-bios {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: var(--secondary);
  border-radius: 13px;
  box-shadow: 0 2px 10px var(--retro-shadow);
  border: 2px dashed var(--accent);
  padding: 21px 19px;
  min-width: 195px;
  max-width: 310px;
  flex: 1 1 225px;
}
.impact-stats ul, .faq-list {
  padding-left: 18px;
  font-size: 1.02rem;
}
.success-stories p, .impact-stats li {
  background: #fffef9;
  border-left: 4px solid var(--accent);
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 6px;
  box-shadow: 0 1px 4px var(--retro-shadow);
}
.success-stories em { color: var(--primary); font-style: normal; }
.faq-list li {
  background: var(--retro-bg);
  border-radius: 9px;
  border: 2px solid var(--yellow);
  margin-bottom: 10px;
  padding: 12px 17px;
  box-shadow: 0 1px 5px var(--retro-shadow);
}
.faq-list h3 { margin-bottom: 3px; }

/* SPECIES HIGHLIGHTS */
.species-snippets {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 21px;
  flex-wrap: wrap;
}
.species-snippets > div {
  background: #fffbe9;
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 17px 15px 7px 15px;
  box-shadow: 0 2px 9px var(--retro-shadow);
  min-width: 180px;
  max-width: 245px;
}
@media (max-width: 700px) {
  .species-snippets { flex-direction: column; gap: 11px; }
  .species-snippets > div { max-width: 100%; }
}

/* STEP-BY-STEP RETRO GUIDE */
.step-by-step-guides {
  background: #fffefa;
  padding: 12px 16px 11px 16px;
  border-radius: 10px;
  box-shadow: 0 1px 5px var(--retro-shadow);
  border-left: 6px double var(--accent);
  margin: 18px 0 8px 0;
}
.step-by-step-guides ol {
  padding-left: 24px;
}

/* FACTS & INFOGRAPHICS */
.facts {
  background: var(--retro-bg);
  margin-top: 8px;
}
.fact-list {
  list-style: disc;
  margin: 24px 0 18px 30px;
  color: var(--retro-text);
  font-size: 1.07rem;
}
.infographics img, .interactive-map img {
  margin: 14px 0 0 0;
  width: 100px;
  height: auto;
  filter: sepia(0.2) hue-rotate(-7deg);
}

/* CTA SECTIONS (VINTAGE NOVELTY CARD) */
.cta {
  background: var(--yellow);
  border-radius: 32px;
  border: 3px solid var(--accent);
  box-shadow: 0 7px 23px 0 var(--retro-shadow);
  margin-bottom: 60px;
  padding: 40px 12px 32px 12px;
  text-align: center;
}
.cta h2 {
  color: var(--primary);
}
.cta p {
  color: #533221;
  margin-bottom: 18px;
}

/* MAP PREVIEW / HIGHLIGHTS */
.highlights-list {
  margin-top: 24px;
  color: #7b5912;
  font-size: 1.09rem;
}

/* ADDRESS + FOOTER */
footer {
  background: var(--primary);
  color: #fffbe9;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
  padding: 35px 15px 28px 15px;
  border-top: 4px dotted var(--yellow);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}
.footer-nav a {
  color: #fffbe9;
  font-size: 1rem;
  font-family: var(--font-display);
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--yellow);
}
footer address {
  font-style: normal;
  color: #efe8da;
  line-height: 1.7;
  font-size: 1rem;
}
footer address img {
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 4px;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* LEGAL/COOKIE/CARD LISTS */
.legal {
  background: #fffbe9;
  border-radius: 22px;
  box-shadow: 0 1px 12px var(--retro-shadow);
  border: 2px solid var(--yellow);
}
.legal ul {
  margin: 20px 0 20px 26px;
  font-size: 1rem;
}
.cookie-settings-options {
  margin-left: 16px;
  list-style: circle inside;
}

/* THANK YOU SECTION */
.thankyou h1 { color: var(--accent); }
.thankyou .cta-button { margin-top: 32px; }

/* RESPONSIVE: MOBILE FIRST, CONTENT FLEX DIRECTION */
@media (max-width: 720px) {
  .container, .content-wrapper { max-width: 100%; }
  .team-bios { flex-direction: column; gap: 13px; }
}

/* TRANSITIONS & MICRO-INTERACTIONS */
.card, .feature-item, .step-by-step-guides, .team-member,
.article-snippets article, .article-listings article, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.16s;
}
.card:hover,
.feature-item:hover,
.article-snippets article:hover,
.article-listings article:hover,
.testimonial-card:hover {
  box-shadow: 0 7px 22px var(--retro-shadow);
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.025);
  z-index: 2;
}

/* ACCESSIBILITY & HIDE/SHOW UTILITIES */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

/*-----------------------------------------*/
/* COOKIE CONSENT BANNER, FIXED BOTTOM BAR */
/*-----------------------------------------*/
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #f9eece;
  color: var(--retro-text);
  box-shadow: 0 -4px 24px 0 var(--retro-shadow);
  z-index: 1200;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 4px solid var(--accent);
  font-size: 1.08rem;
  transition: transform 0.38s;
  font-family: var(--font-body);
}
#cookie-banner.hide {
  transform: translateY(200%);
  pointer-events: none;
  opacity: 0;
}
#cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
#cookie-banner button,
#cookie-banner .cta-button {
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--yellow);
  border: 2px solid var(--brown);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border 0.14s;
}
#cookie-banner button:hover, #cookie-banner button:focus {
  background: var(--accent);
  color: #fffefb;
  border-color: var(--accent);
}
#cookie-banner .cookie-settings {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  margin-left: 6px;
}

@media (max-width: 700px) {
  #cookie-banner {
   flex-direction: column;
   align-items: flex-start;
   gap: 17px;
   padding: 21px 8px;
  }
  #cookie-banner .cookie-buttons { gap: 8px;}
}

/*-----------------------------*/
/* COOKIE CONSENT MODAL POPUP   */
/*-----------------------------*/
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(70,38,13,0.22);
  z-index: 1210;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1rem;
}
#cookie-modal.open {
  display: flex;
  animation: fadeinmodal 0.32s cubic-bezier(.8,.25,.24,1.1);
}
@keyframes fadeinmodal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  min-width: 320px;
  max-width: 97vw;
  width: 420px;
  background: #fffbe9;
  padding: 32px 30px 24px 30px;
  border-radius: 18px;
  box-shadow: 0 9px 38px #a06e2e33, 0 1px 6px var(--retro-shadow);
  border: 4px double var(--accent);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h2 { color: var(--accent); font-size: 1.23rem; margin-bottom: 7px; }
.cookie-modal-content ul {
  margin: 0 0 15px 0;
  padding: 0;
  list-style: none;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 14px;
  font-size: 1.09rem;
}
.cookie-toggle-label {
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--primary);
}
.cookie-modal-content .modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 11px;
}
.status-badge {
  font-size: 0.95em;
  color: var(--primary);
  background: var(--yellow);
  border-radius: 13px;
  padding: 1px 10px;
  margin-left: 6px;
  letter-spacing: 0.04em;
}
.status-badge.essential { background: var(--accent); color: #fffbe9; }

/* Custom toggle switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 21px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer; left: 0; top: 0; right: 0; bottom: 0;
  background: var(--yellow);
  border-radius: 21px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--accent);
}
.cookie-slider:before {
  content: '';
  position: absolute; left: 2px; top: 2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.21s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}

.cookie-modal-close {
  position: absolute;
  right: 15px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 2.4rem;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--accent);
  background: #fdeec4;
  border-radius: 7px;
}
@media (max-width: 500px) {
  .cookie-modal-content { padding: 17px 8px 8px 8px; min-width: unset; width: 99vw; }
  .cookie-toggle-row { font-size: 0.98rem; }
}

/* FORM ELEMENTS (for future proofing) */
input, select, textarea {
  font-family: var(--font-body);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 1rem;
  margin-top: 7px;
  margin-bottom: 14px;
  background: #fffefa;
  color: var(--primary);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  outline: none;
  background: #fffbe9;
}

::selection {
  background: var(--yellow);
  color: var(--primary);
}

/* NOSTALGIC: DOTTED HORIZONTAL RULES AND VINTAGE ELEMENTS */
hr {
  border: none;
  border-top: 3px dotted var(--yellow);
  margin: 25px 0 25px 0;
}

/* END OF STYLE.CSS */