/* ============================================================
   JUNGAL SAFARI — GLOBAL LAYOUT CSS
   Covers: header.php, footer.php — nav, mobile menu, footer,
   preloader, notification bar, search overlay, cookie consent
   ============================================================ */

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold, #d4af37);
  color: var(--jungle-dark, #0d2818);
  font-weight: 700;
  padding: 0.5rem 1rem;
  z-index: 99999;
  border-radius: 0 0 6px 0;
  text-decoration: none;
  font-size: 0.9rem;
}
.skip-link:focus { top: 0; }

/* ── READING PROGRESS BAR ── */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold, #d4af37), #f5c518, var(--gold, #d4af37));
  z-index: 10001;
  transition: width 0.12s linear;
  pointer-events: none;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--jungle-dark, #0d2818);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__logo {
  width: 100px;
  height: 100px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}
.preloader__text {
  color: rgba(245,240,232,0.7);
  font-family: var(--font-accent, 'Oswald', sans-serif);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
}
.preloader__bar {
  width: 180px;
  height: 3px;
  background: rgba(212,175,55,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.preloader__progress {
  height: 100%;
  background: var(--gold, #d4af37);
  border-radius: 2px;
  animation: preloaderBar 2s ease forwards;
}
@keyframes preloaderBar {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── NOTIFICATION BAR ── */
.notification-bar {
  background: linear-gradient(90deg, var(--jungle-dark, #0d2818) 0%, var(--jungle-mid, #1a4a2e) 100%);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  position: relative;
  z-index: 1001;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.notification-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 3rem;
  min-height: 40px;
  gap: 0.5rem;
}
.notification-bar__text {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.85);
  margin: 0;
  text-align: center;
  line-height: 1.4;
}
.notification-bar__text strong { color: var(--gold, #d4af37); }
.notification-bar__icon {
  margin-right: 0.3rem;
}
.notification-bar__sep {
  color: rgba(245,240,232,0.3);
  margin: 0 0.4rem;
}
.notification-bar__animal-link,
.notification-bar__quiz-link {
  color: var(--gold, #d4af37);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.notification-bar__animal-link:hover,
.notification-bar__quiz-link:hover { opacity: 0.8; text-decoration: underline; }
.notification-bar__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(245,240,232,0.5);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
.notification-bar__close:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ── SITE HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(7,15,12,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 1.5rem;
}

/* Logo */
.site-header__logo { flex-shrink: 0; }
.site-header__logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.site-header__logo-svg { display: block; }

/* Header Actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.site-header__search-btn {
  background: none;
  border: none;
  color: rgba(245,240,232,0.85);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
.site-header__search-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--gold, #d4af37);
}
.site-header__cta { flex-shrink: 0; }

/* ── PRIMARY NAV ── */
.site-header__nav { flex: 1; display: flex; justify-content: center; }

.primary-nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}
.primary-nav__item {
  position: relative;
}
.primary-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.55rem 0.9rem;
  color: rgba(245,240,232,0.88);
  text-decoration: none;
  font-family: var(--font-accent, 'Oswald', sans-serif);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 5px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.primary-nav__link:hover,
.primary-nav__link:focus {
  color: var(--gold, #d4af37);
  background: rgba(212,175,55,0.1);
}
.primary-nav__link--shop {
  background: rgba(212,175,55,0.12);
  color: var(--gold, #d4af37);
  border: 1px solid rgba(212,175,55,0.3);
}
.primary-nav__link--shop:hover {
  background: rgba(212,175,55,0.22);
}
.primary-nav__arrow {
  transition: transform 0.2s;
}
.primary-nav__item--mega:hover .primary-nav__arrow,
.primary-nav__item--mega:focus-within .primary-nav__arrow {
  transform: rotate(180deg);
}

/* ── MEGA MENU ── */
.mega-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 600px;
  background: rgba(7,15,12,0.98);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 200;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.primary-nav__item--mega:hover .mega-menu,
.primary-nav__item--mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu--habitats {
  min-width: 500px;
}

.mega-menu__inner {
  padding: 1.75rem;
}
.mega-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.mega-menu__title {
  font-family: var(--font-display, serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold, #d4af37);
  margin: 0;
}
.mega-menu__view-all {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.mega-menu__view-all:hover { color: var(--gold, #d4af37); }

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu__grid--continents {
  grid-template-columns: repeat(3, 1fr);
}

.mega-menu__item { }

.mega-menu__family-link,
.mega-menu__continent-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  border: 1px solid transparent;
}
.mega-menu__family-link:hover,
.mega-menu__continent-link:hover {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.2);
}

.mega-menu__family-icon,
.mega-menu__continent-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.mega-menu__family-name,
.mega-menu__continent-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(245,240,232,0.9);
  line-height: 1.2;
}
.mega-menu__family-count {
  font-size: 0.68rem;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.04em;
}
.mega-menu__continent-desc {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.3;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(245,240,232,0.9);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}
.mobile-menu.is-open { pointer-events: auto; }

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }

.mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--jungle-dark, #0d2818);
  border-right: 1px solid rgba(212,175,55,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  flex-shrink: 0;
}
.mobile-menu__logo {
  font-family: var(--font-display, serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold, #d4af37);
  text-decoration: none;
}
.mobile-menu__close {
  background: none;
  border: none;
  color: rgba(245,240,232,0.6);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); color: #fff; }

.mobile-menu__search {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.mobile-menu__search form {
  display: flex;
  gap: 0.5rem;
}
.mobile-menu__search-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.55rem 0.9rem;
  color: rgba(245,240,232,0.9);
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
}
.mobile-menu__search-input::placeholder { color: rgba(245,240,232,0.4); }
.mobile-menu__search-input:focus { border-color: var(--gold, #d4af37); }
.mobile-menu__search-submit {
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 6px;
  width: 40px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #d4af37);
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  padding: 0;
}
.mobile-menu__search-submit:hover { background: rgba(212,175,55,0.25); }

.mobile-menu__list {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  overflow-y: auto;
}
.mobile-menu__item { }
.mobile-menu__item--divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0.5rem 1.5rem;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  color: rgba(245,240,232,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu__link:hover {
  background: rgba(212,175,55,0.08);
  color: var(--gold, #d4af37);
}
.mobile-menu__link--sub {
  padding-left: 2.5rem;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
}
.mobile-menu__link--sub:hover { color: rgba(245,240,232,0.9); }

.mobile-menu__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,15,12,0.95);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.search-overlay__panel {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 12vh auto 0;
  padding: 0 1.5rem;
}
.search-overlay__close {
  position: absolute;
  top: -3rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(245,240,232,0.7);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
.search-overlay__close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.search-overlay__content { }
.search-overlay__label {
  font-family: var(--font-display, serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}
/* WordPress search form */
.search-overlay .search-form {
  display: flex;
  gap: 0.5rem;
}
.search-overlay .search-field {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: #fff;
  font-size: 1.1rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.search-overlay .search-field::placeholder { color: rgba(245,240,232,0.4); }
.search-overlay .search-field:focus { border-color: var(--gold, #d4af37); }
.search-overlay .search-submit {
  background: var(--gold, #d4af37);
  color: var(--jungle-dark, #0d2818);
  border: none;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-family: var(--font-accent, sans-serif);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.search-overlay .search-submit:hover { background: #c9a832; }
.search-overlay__hint {
  text-align: center;
  color: rgba(245,240,232,0.4);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ── HIDE MOBILE UTILITY ── */
.hide-mobile { }

/* ── SITE FOOTER ── */
.site-footer {
  background: var(--jungle-dark, #0d2818);
  color: rgba(245,240,232,0.75);
}
.site-footer__main {
  padding: 4rem 0 3rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 2.5rem;
}
.site-footer__col { }
.site-footer__col--brand { }
.site-footer__col--newsletter { }

.site-footer__logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1rem;
}
.site-footer__logo-text {
  font-family: var(--font-display, serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold, #d4af37);
}

.site-footer__col-title {
  font-family: var(--font-accent, sans-serif);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold, #d4af37);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.site-footer__tagline {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

/* Social links */
.site-footer__social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.site-footer__social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.site-footer__social-link:hover {
  background: var(--gold, #d4af37);
  color: var(--jungle-dark, #0d2818);
  border-color: var(--gold, #d4af37);
}

/* Footer nav list */
.site-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__nav-list li { margin-bottom: 0.6rem; }
.site-footer__nav-list a {
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.4;
  transition: color 0.2s;
}
.site-footer__nav-list a:hover { color: var(--gold, #d4af37); }

/* Newsletter */
.site-footer__newsletter-desc {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.site-footer__newsletter-form { }
.site-footer__newsletter-input-wrap {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.site-footer__newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  color: rgba(245,240,232,0.9);
  font-size: 0.88rem;
  outline: none;
  min-width: 0;
  font-family: inherit;
  transition: border-color 0.2s;
}
.site-footer__newsletter-input::placeholder { color: rgba(245,240,232,0.35); }
.site-footer__newsletter-input:focus { border-color: var(--gold, #d4af37); }
.site-footer__newsletter-input.is-invalid { border-color: #dc3545; }
.site-footer__newsletter-btn {
  flex-shrink: 0;
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
}
.site-footer__newsletter-privacy {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.35);
  line-height: 1.5;
}
.site-footer__newsletter-privacy a {
  color: rgba(245,240,232,0.5);
  text-decoration: underline;
}
.site-footer__newsletter-success {
  background: rgba(46,139,87,0.15);
  border: 1px solid rgba(46,139,87,0.3);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #5adb5a;
  font-size: 0.88rem;
  margin-top: 0.75rem;
}
.site-footer__widgets { margin-top: 1.5rem; }

/* Footer Bottom Bar */
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.site-footer__copyright {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  margin: 0;
}
.site-footer__copyright a {
  color: rgba(245,240,232,0.5);
  text-decoration: none;
}
.site-footer__copyright a:hover { color: var(--gold, #d4af37); }
.site-footer__legal-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-footer__legal-nav a {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__legal-nav a:hover { color: var(--gold, #d4af37); }

/* ── AD ZONE H SECTION ── */
.ad-zone-h-section {
  padding: 1.5rem 0;
  background: rgba(245,240,232,0.4);
  text-align: center;
  border-top: 1px solid rgba(13,40,24,0.08);
}

/* ── COOKIE CONSENT ── */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 1rem;
  right: 1rem;
  max-width: 560px;
  z-index: 9990;
  background: var(--jungle-dark, #0d2818);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}
.cookie-consent.is-visible {
  bottom: 1rem;
  opacity: 1;
}
.cookie-consent.is-dismissed {
  bottom: -200px;
  opacity: 0;
  pointer-events: none;
}
.cookie-consent__inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-consent__text {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.8);
  line-height: 1.6;
}
.cookie-consent__text p { margin: 0; }
.cookie-consent__link {
  color: var(--gold, #d4af37);
  text-decoration: none;
}
.cookie-consent__link:hover { text-decoration: underline; }
.cookie-consent__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .site-header__nav { display: none; }
  .hamburger { display: flex; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header__inner { padding: 0 1rem; }
  .site-header__cta { display: none; }
  .notification-bar__inner { padding: 0.55rem 3rem; }
  .site-footer__main { padding: 3rem 0 2rem; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}

@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .site-footer__legal-nav { gap: 0.75rem; }
  .cookie-consent__inner { padding: 1.25rem; }
}
