/* CSS RESET & BASE -------------------------------------- */
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background-color: #222633;
  color: #f9fafc;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.2s;
  position: relative;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #8EAD7A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F6D7B0;
  text-shadow: 0 0 4px #8EAD7A;
}

/* --- BRAND COLORS ------ */
:root {
  --primary: #2C3A47;
  --secondary: #8EAD7A;
  --accent: #F6D7B0;
  --background-main: #222633;
  --background-elevated: #212633;
  --background-section: #242940;
  --card-bg: #282E44;
  --card-hover: #34395a;
  --text-main: #f9fafc;
  --text-dark: #1b1f29;
  --text-muted: #bcc6d2;
  --border-glow: #8EAD7A;
  --neon-blue: #41c4f5;
  --neon-green: #6fdf92;
  --shadow: 0 4px 32px 0 rgba(34,45,95,.15), 0 1.5px 8px 0 rgba(46,163,201,0.07);
}

/* --- TYPOGRAPHY --------------- */
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--accent);
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 900;
  text-shadow: 0 2px 16px var(--neon-blue), 0 0.5px 1px var(--primary);
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 14px;
}
.subheadline {
  font-size: 1.25rem;
  margin-bottom: 26px;
  color: var(--text-muted);
  font-family: 'Lato', Arial, sans-serif;
  line-height: 1.5;
}
strong {
  color: var(--neon-green);
}

/* --- LAYOUT: CONTAINER, FLEX PATTERNS ----------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0; /* Will be overridden in sections as needed */
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--background-section);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* UTILITY FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: box-shadow .24s, background .19s;
}
.card:hover {
  background: var(--card-hover);
  box-shadow: 0 0 0 3px var(--border-glow), 0 2px 24px 0 var(--neon-blue), var(--shadow);
}
.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;
  padding: 20px;
  background: #fff;
  color: #181C27;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(46,163,201,0.10);
  border: 1.5px solid var(--accent);
  min-width: 220px;
  max-width: 340px;
  margin: 0 10px 24px 0;
  transition: box-shadow .21s, border-color .21s;
}
.testimonial-card:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px var(--neon-green), 0 2.5px 24px 0 var(--neon-blue);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* --- HEADER & NAVIGATION --------------- */
header {
  background-color: var(--primary);
  padding: 0;
  box-shadow: 0 2px 14px 0 rgba(44,58,71,0.1);
  z-index: 30;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  width: 100%;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: var(--text-main);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 0 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .2s;
}
header nav a:hover, header nav a:focus {
  border-bottom: 2px solid var(--neon-blue);
  color: var(--neon-blue);
}
header img {
  height: 44px;
  margin-right: 18px;
}

/* --- BUTTONS ------------------------------ */
.btn-primary {
  color: #212633;
  background: linear-gradient(94deg, var(--secondary) 70%, var(--accent) 100%);
  font-family: 'Lato', Arial, sans-serif;
  font-weight: bold;
  border: none;
  outline: none;
  border-radius: 16px;
  padding: 12px 32px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 1.5px 10px 0 var(--secondary);
  transition: background .20s, color .18s, box-shadow .20s;
  margin-left: 18px;
  margin-top: 0;
  margin-bottom: 0;
  text-shadow: 0 1px 6px #fff3;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(94deg, var(--neon-blue) 65%, var(--neon-green) 100%);
  color: #181C27;
  box-shadow: 0 0 0 3px var(--neon-green), 0 2.5px 40px 0 var(--neon-blue);
  text-shadow: 0 2px 12px #f6d7b080;
}
.btn-secondary {
  color: var(--accent);
  background: none;
  border: 2px solid var(--accent);
  border-radius: 16px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 26px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .15s, color .16s, border-color .17s;
}
.btn-secondary:hover, .btn-secondary:focus {
  color: #232225;
  background: var(--accent);
  border-color: var(--neon-blue);
}

/* --- MOBILE BURGER MENU ----------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--accent);
  cursor: pointer;
  margin-left: auto;
  z-index: 60;
  padding: 8px 14px;
  border-radius: 9px;
  transition: background .18s, box-shadow .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--neon-blue);
  color: #232225;
  box-shadow: 0 0 0 3px var(--neon-blue);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  background: var(--background-main);
  box-shadow: 0 0 64px 10px #000a;
  z-index: 500;
  transform: translateX(-120vw);
  transition: transform .41s cubic-bezier(.6,.1,.3,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  padding: 8px 17px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background .16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--neon-blue);
  color: #222;
}
.mobile-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Lato', Arial, sans-serif;
  padding: 16px 32px;
  border-radius: 12px;
  color: var(--accent);
  background: none;
  text-align: left;
  transition: background .17s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--primary);
  background: var(--accent);
}
@media (max-width: 1023px) {
  header nav { display: none; }
  .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 1023px) {
  .mobile-menu {
    display: flex;
    transition: transform .41s cubic-bezier(.6,.1,.3,1);
  }
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* --- HERO, SECTIONS, FLEX GRIDS ----------- */
.highlights-grid, .new-books-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.highlights-grid > div, .new-books-grid > div {
  background: var(--card-bg);
  color: var(--text-main);
  padding: 24px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  min-width: 200px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  font-size: 1rem;
  border-left: 4px solid var(--neon-blue);
  transition: border-color .19s, box-shadow .18s;
}
.highlights-grid > div:hover,
.new-books-grid > div:hover {
  border-left: 4px solid var(--neon-green);
  box-shadow: 0 0 0 3px var(--neon-green), 0 2.5px 24px 0 var(--neon-blue);
}
@media (max-width: 800px) {
  .highlights-grid, .new-books-grid { flex-direction: column; }
}

/* --- FEATURES / USP LIST ----------------- */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin-top: 12px;
  margin-bottom: 0;
  width: 100%;
}
.features-list li {
  display: flex;
  flex: 1 1 200px;
  align-items: flex-start;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  gap: 22px;
  padding: 24px 20px 20px 20px;
  min-width: 210px;
  max-width: 380px;
  border-left: 4px solid var(--secondary);
  transition: border-color .18s, box-shadow .15s;
}
.features-list li:hover {
  border-left: 4px solid var(--neon-blue);
  box-shadow: 0 0 0 3px var(--neon-blue), 0 2px 18px 0 var(--neon-green);
}
.features-list img {
  width: 44px;
  height: 44px;
  margin-right: 8px;
}
.features-list h3 {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .features-list { flex-direction: column; }
  .features-list li { max-width: 100%; }
}

/* --- TEAM PROFILES --------------- */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 24px;
}
.team-profiles > div {
  flex: 1 1 220px;
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 20px 24px;
  margin-bottom: 20px;
  color: var(--text-main);
  border-left: 4px solid var(--accent);
  transition: border-color .18s, box-shadow .18s;
}
.team-profiles > div:hover {
  border-left: 4px solid var(--neon-green);
  box-shadow: 0 0 0 3px var(--neon-green), 0 2.5px 24px 0 var(--accent);
}
@media (max-width: 800px) {
  .team-profiles { flex-direction: column; }
}

/* --- TESTIMONIALS --------------- */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.testimonial-card p {
  color: #15151b;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.testimonial-card span {
  color: #232225;
  font-size: 0.95rem;
}
.rating-summary {
  margin-top: 20px;
  color: var(--accent);
  font-size: 1.1rem;
  font-family: 'Merriweather', serif;
  background: var(--primary);
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 0.5px 10px 0 var(--secondary);
}

/* --- LISTINGS, FILTERS, ACCORDIONS ----------- */
.catalog-filters ul, .popular-genres ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin-bottom: 16px;
}
.catalog-filters li, .popular-genres li {
  padding: 6px 16px;
  background: var(--background-elevated);
  border: 1.5px solid var(--secondary);
  border-radius: 12px;
  font-size: 0.97rem;
  font-family: 'Lato', Arial, sans-serif;
  color: var(--secondary);
  transition: background .16s, color .16s, border-color .15s;
  cursor: pointer;
}
.catalog-filters li:hover, .popular-genres li:hover {
  background: var(--secondary);
  color: #222634;
  border-color: var(--accent);
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 30px 0;
}
.search-bar input[type="text"] {
  padding: 9px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--secondary);
  background: var(--background-elevated);
  color: var(--text-main);
  font-size: 1rem;
  transition: border-color .11s;
}
.search-bar input[type="text"]:focus {
  border-color: var(--accent);
  outline: none;
}
.book-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0;
}
.book-listings > div {
  flex: 1 1 240px;
  background: var(--card-bg);
  border-radius: 13px;
  box-shadow: var(--shadow);
  padding: 18px 16px;
  color: var(--text-main);
  margin-bottom: 20px;
  font-size: 1rem;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-accordion div {
  background: var(--background-elevated);
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 1.5px 8px 0 var(--secondary);
  transition: box-shadow .13s;
}
.faq-accordion strong {
  color: var(--accent);
}

/* --- TEXT SECTIONS (RESET) ----------- */
.text-section {
  background: transparent !important;
  box-shadow: none;
  border-radius: 0 !important;
}

/* --- PROMO BANNER -------------------- */
.promo-banner {
  background: var(--neon-green);
  color: #181C27;
  font-weight: bold;
  font-size: 1.18rem;
  border-radius: 12px;
  padding: 13px 23px;
  margin-bottom: 22px;
  box-shadow: 0 2px 16px 0 var(--neon-green);
  font-family: 'Lato', Arial, sans-serif;
}

/* --- NEWSLETTER / FORM SECTION ----------- */
.newsletter-section, .newsletter {
  background: var(--primary);
  border-radius: 18px;
  color: var(--text-main);
  padding: 40px 28px;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
}
.newsletter ul {
  list-style: disc inside;
  margin-bottom: 18px;
  margin-left: 24px;
}

/* --- FOOTER ---------------------------- */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 0 0 28px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 30px;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-logo {
  min-width: 90px;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
}
footer nav a {
  color: var(--accent);
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  margin-bottom: 2px;
  transition: color .14s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--neon-blue);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
  vertical-align: text-bottom;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 20px; align-items: flex-start; }
}

/* --- COOKIE CONSENT BANNER ----------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  background-color: var(--card-bg);
  color: var(--text-main);
  box-shadow: 0 -2px 32px 0 rgba(28,42,72,0.15);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 18px;
  gap: 20px;
  font-size: 1rem;
  border-top: 2px solid var(--accent);
  animation: slideUpCookie .55s cubic-bezier(.71,.33,.35,1) both;
}
@keyframes slideUpCookie {
  from { transform: translateY(140px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--text-main);
  margin-bottom: 0;
  font-size: 1rem;
  max-width: 500px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Lato', Arial, sans-serif;
  padding: 8px 19px;
  border-radius: 10px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .14s, color .13s, box-shadow .14s;
}
.cookie-banner .accept {
  background: var(--neon-green);
  color: #1a243d;
  border: 1.5px solid var(--neon-green);
  box-shadow: 0 0.5px 8px 0 var(--neon-green);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--neon-blue);
  border-color: var(--neon-blue);
  color: #15151b;
  box-shadow: 0 2px 24px 0 var(--neon-blue);
}
.cookie-banner .reject {
  background: var(--accent);
  color: #232225;
  border: 1.5px solid var(--accent);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--secondary);
  border-color: var(--neon-green);
  color: #10161d;
}
.cookie-banner .settings {
  background: none;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--primary);
  color: var(--neon-blue);
  border-color: var(--neon-blue);
}

/* --- COOKIE MODAL ---------- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100dvh;
  z-index: 1020;
  background: rgba(32,36,65,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: showModal .3s cubic-bezier(.82,.09,.2,1) both;
}
@keyframes showModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: var(--background-section);
  color: var(--text-main);
  border-radius: 18px;
  padding: 38px 30px 28px 30px;
  box-shadow: 0 6px 40px 0 var(--neon-blue), 0 2.5px 18px 0 var(--neon-green);
  min-width: 260px;
  max-width: 96vw;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.22rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}
.cookie-modal-content .cookie-category {
  margin-bottom: 12px;
  padding: 10px 0 5px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal-content label {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: 'Lato', Arial, sans-serif;
}
.cookie-modal-content input[type="checkbox"] {
  width: 21px; height: 21px;
  accent-color: var(--neon-blue);
}
.cookie-modal-content .modal-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-content button {
  font-family: 'Lato', Arial, sans-serif;
  padding: 8px 19px;
  border-radius: 10px;
  border: none;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .14s, color .13s;
}
.cookie-modal-content .accept {
  background: var(--neon-green);
  color: #181C27;
}
.cookie-modal-content .accept:hover { background: var(--neon-blue); color: #1a223e; }
.cookie-modal-content .reject {
  background: var(--accent); color: #232225;
}
.cookie-modal-content .reject:hover { background: var(--secondary); color: #10161d; }
.cookie-modal .close-modal {
  position: absolute;
  right: 20px; top: 14px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--accent);
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal .close-modal:hover { color: var(--neon-blue); }

/* --- RESPONSIVE RULES (Mobile-first) ---------- */
@media (max-width: 1023px) {
  .container { padding: 0 10px; }
  .section { padding: 30px 10px; }
  .content-wrapper { gap: 20px; }
  .content-grid, .card-container, .highlights-grid, .team-profiles, .features-list, .popular-genres ul, .book-listings, .testimonials, .new-books-grid {
    flex-direction: column;
    gap: 18px;
  }
  .newsletter-section, .newsletter { padding: 30px 13px; }
  header .container {
    gap: 9px;
    min-height: 60px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.13rem; }
  .faq-accordion div { padding: 13px 9px; font-size: 1rem; }
  footer .container { flex-direction: column; gap: 18px; }
}
@media (max-width: 540px) {
  .cookie-banner { flex-direction: column; gap: 15px; align-items: flex-start; }
  .cookie-banner .cookie-btns { flex-direction: column; gap: 8px; }
  .cookie-modal-content { padding: 19px 8px; }
}

/* --- VISUAL ENHANCEMENTS: NEON + SHADOWS ------ */
.card, .features-list li, .team-profiles > div, .highlights-grid > div, .new-books-grid > div {
  border: none;
  box-shadow: 0 1.5px 10px 0 var(--secondary), 0 2px 18px 0 var(--neon-blue);
}
.card:hover, .features-list li:hover, .team-profiles > div:hover, .highlights-grid > div:hover, .new-books-grid > div:hover {
  box-shadow: 0 0 0 3px var(--neon-blue), 0 2px 24px 0 var(--neon-green);
}

/* --- FORMS & ACCESSIBILITY ----------- */
input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--neon-blue);
}

/* --- ACCENTUATE LINKS/SPECIAL STATES ---------- */
a[aria-current="page"], nav a.active {
  color: var(--neon-blue);
  border-bottom: 2.5px solid var(--neon-blue);
  font-weight: bold;
  pointer-events: none;
}

/* --- SPACING ENFORCEMENTS ------------ */
.section, .card, .features-list li, .highlights-grid > div, .team-profiles > div, .testimonial-card, .book-listings > div {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .testimonials, .features-list, .highlights-grid, .team-profiles {
  gap: 24px;
}

/* --- EXTRA: ACCESSIBLE FOCUS STYLES ---------- */
:focus-visible {
  outline: 2.5px solid var(--neon-blue);
  outline-offset: 0.5px;
}

/* --- HIDE LAST CHILD MARGIN --------- */
.section:last-child, .card:last-child, .testimonial-card:last-child, .highlights-grid > div:last-child { margin-bottom: 0; }

/* --- PRINT SUPPORT (BRIEF) ------------ */
@media print {
  body, html {
    background: #fff!important;
    color: #222!important;
  }
  nav, .mobile-menu, .cookie-banner, .btn-primary, .btn-secondary, footer { display: none !important; }
  .section, .card, .content-wrapper { box-shadow: none!important; background: none!important; }
}
