/* =====================================================
   CARE COVE — NAVBAR & FOOTER
   Navbar: WHITE with dark purple logo pill (max contrast)
   Footer: Deep purple #140a2e with gold accents
===================================================== */

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, #3d2278 0%, #4a2c8a 100%);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  height: 72px; display: flex; align-items: center;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.3); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  width: 100%; display: flex; align-items: center; gap: 16px; min-width: 0;
}

/* LOGO — mix-blend-mode:screen makes black bg transparent on purple navbar */
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0; margin-right: clamp(16px, 3vw, 32px); min-width: 0;
}
.nav-logo-img {
  height: clamp(40px, 4vw, 46px); width: auto; object-fit: contain; display: block;
  mix-blend-mode: screen;
}

/* NAV LINKS */
.nav-menu {
  display: flex; align-items: center; list-style: none; gap: 2px; flex: 1 1 auto; min-width: 0; padding-right: 10px;
}
.nav-item { position: relative; }
.nav-item-has-dropdown {
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.nav-item-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 18px;
}
.nav-link {
  display: flex; align-items: center; gap: 4px; min-height: 44px; padding: 10px 12px;
  border-radius: 8px; font-size: 0.84rem; font-weight: 700;
  color: rgba(255,255,255,0.82); text-decoration: none; white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  font-family: 'DM Sans','Nunito',sans-serif;
  position: relative;
  z-index: 1;
}
.nav-link svg { width: 13px; height: 13px; opacity: 0.5; transition: transform 0.25s; flex-shrink: 0; }
.nav-link:hover, .nav-link.active { color: #e8c97a; background: rgba(255,255,255,0.1); }
.nav-item:hover .nav-link svg, .nav-item:focus-within .nav-link svg, .nav-item.dropdown-open .nav-link svg { transform: rotate(180deg); opacity: 1; }
.nav-item:focus-within > .nav-link, .nav-item.dropdown-open > .nav-link { color: #e8c97a; background: rgba(255,255,255,0.1); }
.nav-link-joinus { color: #2dd4bf !important; font-weight: 800 !important; }
.nav-link-joinus:hover { background: rgba(45,212,191,0.12) !important; }

/* NAV RIGHT */
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; padding-left: 6px; flex-shrink: 0; min-width: 0; }
.nav-socials {
  display: flex; align-items: center; gap: 7px;
  padding-right: 10px; border-right: 1px solid rgba(255,255,255,0.15); margin-right: 2px; flex-shrink: 0;
}
.nav-social {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-social:hover { transform: translateY(-2px); }
.nav-social-instagram {
  background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.nav-social-instagram:hover { box-shadow: 0 4px 14px rgba(220,39,67,0.45); }
.nav-social-facebook { background: #1877F2; }
.nav-social-facebook:hover { box-shadow: 0 4px 14px rgba(24,119,242,0.45); }

.nav-phone {
  display: flex; align-items: center; gap: 6px; min-height: 40px; font-size: 0.79rem; font-weight: 700;
  color: rgba(255,255,255,0.75); text-decoration: none; padding: 7px 10px; border-radius: 8px;
  white-space: nowrap; transition: color 0.2s, background 0.2s;
  font-family: 'DM Sans','Nunito',sans-serif;
}
.nav-phone:hover { color: #e8c97a; background: rgba(255,255,255,0.08); }
.nav-phone svg { width: 14px; height: 14px; color: #c9a84c; flex-shrink: 0; }

/* DROPDOWN */
.nav-dropdown {
  position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #ffffff; border: 1px solid #ede8f8; border-radius: 16px;
  box-shadow: 0 16px 48px rgba(45,23,96,0.14);
  padding: 8px; min-width: 270px; width: max-content; max-width: min(340px, calc(100vw - 32px));
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease; z-index: 200;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown, .nav-item.dropdown-open .nav-dropdown {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px; background: #ffffff;
  border-top: 1px solid #ede8f8; border-left: 1px solid #ede8f8;
  transform: translateX(-50%) rotate(45deg);
}
.dropdown-label {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.13em;
  text-transform: uppercase; color: #0d9488; padding: 6px 12px 4px; display: block;
}
.dropdown-item {
  display: flex; align-items: center; gap: 11px; padding: 10px 12px;
  border-radius: 10px; text-decoration: none; transition: background 0.18s, transform 0.18s;
}
.dropdown-item > div { min-width: 0; }
.dropdown-item:hover { background: #f7f4fd; transform: translateX(3px); }
.dropdown-icon {
  width: 32px; height: 32px; border-radius: 8px; background: #ede8f8;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0; transition: background 0.18s;
}
.dropdown-item:hover .dropdown-icon { background: #e6faf8; }
.dropdown-item h5 { font-size: 0.84rem; font-weight: 700; color: #1c1422; margin-bottom: 1px; font-family: 'DM Sans','Nunito',sans-serif; line-height: 1.3; }
.dropdown-item p { font-size: 0.71rem; color: #7a6e96; line-height: 1.35; margin: 0; overflow-wrap: anywhere; }
.dropdown-footer {
  margin-top: 4px; padding: 8px 12px 4px;
  border-top: 1px solid #f0ebfa; display: flex; justify-content: center;
}
.dropdown-footer a {
  font-size: 0.76rem; font-weight: 700; color: #4a2c8a; text-decoration: none;
  display: flex; align-items: center; gap: 4px; transition: color 0.2s, gap 0.2s;
}
.dropdown-footer a:hover { color: #0d9488; gap: 7px; }

/* HAMBURGER */
.nav-toggle {
  display: none; align-items: center; gap: 10px;
  background: none; border: none; min-width: 44px; height: 44px; padding: 8px 12px; cursor: pointer; margin-left: auto; flex-shrink: 0; justify-content: center;
  border-radius: 12px; position: relative; z-index: 1002;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav-toggle-icon {
  display: inline-flex; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center; width: 24px; flex-shrink: 0;
}
.nav-toggle-icon span {
  display: block; width: 24px; height: 2.5px; background: rgba(255,255,255,0.85);
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.nav-toggle-label {
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.86); font-family: 'DM Sans','Nunito',sans-serif;
}
.nav-toggle.open .nav-toggle-icon span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open .nav-toggle-icon span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open .nav-toggle-icon span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle:focus-visible {
  outline: 2px solid rgba(232,201,122,0.88);
  outline-offset: 3px;
}

/* MOBILE NAV */
.mobile-nav {
  position: fixed; inset: 72px 0 0; background: #ffffff;
  border-top: 1.5px solid #ede8f8; box-shadow: 0 12px 40px rgba(45,23,96,0.12);
  padding: 16px 20px calc(28px + env(safe-area-inset-bottom, 0px)); z-index: 999;
  height: calc(100dvh - 72px); max-height: none; overflow-y: auto; -webkit-overflow-scrolling: touch;
  display: block;
  overscroll-behavior: contain;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav.open { display: block; }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid #f0ebfa;
}
.mobile-nav-head-copy strong {
  display: block; font-size: 1.02rem; line-height: 1.25; color: #261553;
  font-family: 'DM Sans','Nunito',sans-serif;
}
.mobile-nav-head-copy span {
  display: block; margin-top: 4px; font-size: 0.78rem; line-height: 1.45; color: #7a6e96;
  font-family: 'DM Sans','Nunito',sans-serif;
}
.mobile-nav-close {
  appearance: none; border: 1px solid rgba(74,44,138,0.1); background: #f7f4fd;
  width: 44px; height: 44px; border-radius: 12px; color: #4a2c8a; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.mobile-nav-close:hover { background: #ede8f8; transform: translateY(-1px); }
.mobile-nav-close:focus-visible {
  outline: 2px solid rgba(13,148,136,0.85);
  outline-offset: 3px;
}
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav-section { display: block; margin-bottom: 18px; }
.mobile-nav-accordion {
  margin-bottom: 14px; padding: 4px;
  background: linear-gradient(180deg,#ffffff 0%,#fcfbff 100%);
  border: 1px solid #ede8f8; border-radius: 16px;
  box-shadow: 0 10px 24px rgba(45,23,96,0.06);
}
.mobile-nav-section-title {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: #0d9488; margin-bottom: 7px; padding: 0 4px; font-family: 'DM Sans','Nunito',sans-serif;
}
.mobile-nav-accordion-toggle {
  appearance: none; width: 100%; border: none; background: none;
  min-height: 64px; padding: 12px 14px; border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  color: #261553; text-align: left; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-nav-accordion-toggle:hover,
.mobile-nav-accordion.is-open .mobile-nav-accordion-toggle { background: #f7f4fd; }
.mobile-nav-accordion-toggle:focus-visible {
  outline: 2px solid rgba(13,148,136,0.85);
  outline-offset: 2px;
}
.mobile-nav-accordion-summary {
  display: flex; align-items: center; gap: 12px; min-width: 0;
}
.mobile-nav-accordion-icon {
  width: 36px; height: 36px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#ede8f8 0%,#f5f2fb 100%);
  font-size: 1rem; flex-shrink: 0;
}
.mobile-nav-accordion-text { display: grid; gap: 3px; min-width: 0; }
.mobile-nav-accordion-title {
  font-size: 0.94rem; font-weight: 800; line-height: 1.25;
  color: #261553; font-family: 'DM Sans','Nunito',sans-serif;
}
.mobile-nav-accordion-meta {
  font-size: 0.76rem; line-height: 1.45; color: #7a6e96;
  font-family: 'DM Sans','Nunito',sans-serif; overflow-wrap: anywhere;
}
.mobile-nav-accordion-chevron {
  width: 18px; height: 18px; color: #7a6e96; flex-shrink: 0;
  transition: transform 0.22s ease, color 0.22s ease;
}
.mobile-nav-accordion.is-open .mobile-nav-accordion-chevron {
  transform: rotate(180deg); color: #4a2c8a;
}
.mobile-nav-accordion-panel { gap: 2px; padding: 2px 8px 10px; }
.mobile-nav-accordion-panel:not([hidden]) { display: grid; }
.mobile-nav-link {
  display: flex; align-items: center; gap: 10px; min-height: 48px; padding: 11px 12px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 700; color: #4a3d6e; text-decoration: none;
  transition: background 0.2s, color 0.2s; margin-bottom: 2px; font-family: 'DM Sans','Nunito',sans-serif;
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: #f7f4fd; color: #4a2c8a; }
.mobile-nav-link-overview {
  background: rgba(237,232,248,0.38); border: 1px solid rgba(74,44,138,0.08);
}
.mobile-icon {
  width: 30px; height: 30px; border-radius: 8px; background: #ede8f8;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0;
}
.mobile-nav-sub {
  display: flex; flex-direction: column; gap: 3px; padding-left: 12px; margin-top: 6px;
  border-left: 2px solid #ede8f8; margin-left: 18px; margin-bottom: 2px;
}
.mobile-nav-sub a {
  min-height: 44px; padding: 10px 12px; border-radius: 8px; font-size: 0.83rem; font-weight: 600; color: #7a6e96;
  text-decoration: none; transition: background 0.2s, color 0.2s; display: block; font-family: 'DM Sans','Nunito',sans-serif;
}
.mobile-nav-sub a:hover { background: #f7f4fd; color: #4a2c8a; }
.mobile-socials {
  display: flex; gap: 10px; padding: 14px 0; margin: 8px 0 12px;
  border-top: 1px solid #f0ebfa; border-bottom: 1px solid #f0ebfa;
}
.mobile-social {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 7px; min-height: 46px; padding: 10px 14px; border-radius: 10px;
  font-size: 0.82rem; font-weight: 700; color: #fff; text-decoration: none;
  transition: transform 0.2s; font-family: 'DM Sans','Nunito',sans-serif;
}
.mobile-social:hover { transform: translateY(-2px); }
.mobile-social-instagram { background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.mobile-social-facebook { background: #1877F2; }
body.mobile-nav-open { overflow: hidden; }
body { padding-top: 72px; }

/* ── FOOTER ─────────────────────────────────────── */
.footer { background: #140a2e; padding: clamp(56px,8vw,72px) 0 0; }
.footer-grid {
  display: grid; grid-template-columns: minmax(0,2fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);
  gap: clamp(28px,4vw,48px); padding-bottom: 56px; border-bottom: 1px solid rgba(201,168,76,0.15);
}
.footer-brand,.footer-col { min-width: 0; }
/* Logo: screen blend makes black bg transparent on dark footer */
.footer-logo-img {
  height: 50px; width: auto; object-fit: contain; display: block;
  mix-blend-mode: screen;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.85rem; color: rgba(255,255,255,0.48); line-height: 1.78;
  max-width: 32ch; margin-bottom: 20px; font-family: 'DM Sans','Nunito',sans-serif;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; transition: transform 0.22s, box-shadow 0.22s;
}
.footer-social-link:hover { transform: translateY(-3px); }
.footer-social-instagram { background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); box-shadow: 0 4px 14px rgba(220,39,67,0.3); }
.footer-social-instagram:hover { box-shadow: 0 8px 24px rgba(220,39,67,0.5); }
.footer-social-facebook { background: #1877F2; box-shadow: 0 4px 14px rgba(24,119,242,0.3); }
.footer-social-facebook:hover { box-shadow: 0 8px 24px rgba(24,119,242,0.5); }
.footer-col h5 {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  color: #c9a84c; margin-bottom: 18px; font-family: 'DM Sans','Nunito',sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.52); text-decoration: none;
  display: block; transition: color 0.2s, padding-left 0.2s; font-family: 'DM Sans','Nunito',sans-serif;
  overflow-wrap: anywhere;
}
.footer-col ul li a:hover { color: #e8c97a; padding-left: 4px; }
.footer-contact { margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 15px; height: 15px; color: #c9a84c; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.83rem; color: rgba(255,255,255,0.52); line-height: 1.5; font-family: 'DM Sans','Nunito',sans-serif; overflow-wrap: anywhere; }
.footer-contact-item a { color: inherit; text-decoration: none; }
.footer-contact-item a:hover { color: #e8c97a; }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.22); margin: 0; font-family: 'DM Sans','Nunito',sans-serif; }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.74rem; color: rgba(255,255,255,0.26); text-decoration: none; transition: color 0.2s; font-family: 'DM Sans','Nunito',sans-serif; overflow-wrap: anywhere; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }
.footer-cookie-link {
  appearance: none; background: none; border: none; padding: 0;
  font-size: 0.74rem; color: rgba(255,255,255,0.26); cursor: pointer;
  transition: color 0.2s; font-family: 'DM Sans','Nunito',sans-serif; overflow-wrap: anywhere;
}
.footer-cookie-link:hover { color: rgba(255,255,255,0.65); }
.footer-cookie-link:focus-visible {
  outline: 2px solid rgba(232,201,122,0.8);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ── COOKIE CONSENT ────────────────────────────── */
body.cookie-modal-open { overflow: hidden; }
.cookie-consent-shell {
  position: fixed; inset: auto 0 24px; z-index: 1300;
  padding: 0 24px; pointer-events: none;
}
.cookie-consent-banner {
  max-width: 1120px; margin: 0 auto; pointer-events: auto;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 28px;
  padding: 26px 28px; border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,247,252,0.98) 100%);
  border: 1px solid rgba(74,44,138,0.12);
  box-shadow: 0 22px 56px rgba(28,20,34,0.18);
  backdrop-filter: blur(18px);
  opacity: 0; transform: translateY(18px); transition: opacity 0.24s ease, transform 0.24s ease;
}
.cookie-consent-shell.is-banner-visible .cookie-consent-banner {
  opacity: 1; transform: translateY(0);
}
.cookie-consent-copy { max-width: 680px; }
.cookie-consent-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: #0d9488; font-family: 'DM Sans','Nunito',sans-serif;
}
.cookie-consent-copy h3 {
  font-size: 1.45rem; line-height: 1.12; margin-bottom: 10px;
  color: #1c1422; font-family: 'Outfit','DM Sans','Nunito',sans-serif;
}
.cookie-consent-copy p {
  margin: 0; color: #4e4268; font-size: 0.95rem; line-height: 1.65;
  font-family: 'DM Sans','Nunito',sans-serif;
}
.cookie-consent-actions {
  display: flex; align-items: center; justify-content: flex-end; gap: 12px; flex-wrap: wrap;
  min-width: 320px;
}
.cookie-btn {
  appearance: none; border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 18px; border-radius: 999px;
  font-size: 0.84rem; font-weight: 800; letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  font-family: 'DM Sans','Nunito',sans-serif;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn-primary {
  color: #2d1760; background: linear-gradient(135deg, #c9a84c, #e8c97a);
  box-shadow: 0 10px 24px rgba(74,44,138,0.18);
}
.cookie-btn-primary:hover { box-shadow: 0 14px 28px rgba(74,44,138,0.22); }
.cookie-btn-secondary {
  color: #4a2c8a; background: rgba(237,232,248,0.88); border: 1px solid rgba(74,44,138,0.12);
}
.cookie-btn-secondary:hover { background: #ede8f8; }
.cookie-btn-ghost {
  color: #3d2278; background: rgba(255,255,255,0.5); border: 1px solid rgba(74,44,138,0.12);
}
.cookie-btn-ghost:hover { background: rgba(247,244,253,0.95); }
.cookie-btn:focus-visible,
.cookie-modal-close:focus-visible,
.cookie-toggle input:focus-visible + .cookie-toggle-ui {
  outline: 2px solid rgba(13,148,136,0.85);
  outline-offset: 3px;
}

.cookie-modal-backdrop {
  position: fixed; inset: 0; background: rgba(20,10,46,0.5);
  backdrop-filter: blur(8px); pointer-events: auto;
  opacity: 0; transition: opacity 0.22s ease;
}
.cookie-modal {
  position: fixed; inset: 0; display: flex; align-items: center; justify-content: center;
  padding: 32px 20px; pointer-events: none;
}
.cookie-modal-dialog {
  width: min(100%, 760px); max-height: min(86vh, 860px); overflow: auto;
  background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  border-radius: 32px; border: 1px solid rgba(74,44,138,0.12);
  box-shadow: 0 26px 72px rgba(28,20,34,0.24);
  padding: 30px 30px 24px; pointer-events: auto;
  opacity: 0; transform: translateY(22px) scale(0.985); transition: opacity 0.22s ease, transform 0.22s ease;
}
.cookie-consent-shell.is-modal-visible .cookie-modal-backdrop { opacity: 1; }
.cookie-consent-shell.is-modal-visible .cookie-modal-dialog { opacity: 1; transform: translateY(0) scale(1); }
.cookie-modal-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  margin-bottom: 22px;
}
.cookie-modal-head h3 {
  font-size: 1.7rem; line-height: 1.08; margin-bottom: 10px;
  color: #1c1422; font-family: 'Outfit','DM Sans','Nunito',sans-serif;
}
.cookie-modal-head p {
  margin: 0; max-width: 560px; color: #4e4268; line-height: 1.68;
  font-size: 0.95rem; font-family: 'DM Sans','Nunito',sans-serif;
}
.cookie-modal-close {
  appearance: none; border: 1px solid rgba(74,44,138,0.1); cursor: pointer;
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: #f7f4fd; color: #4a2c8a; transition: background 0.18s ease, transform 0.18s ease;
}
.cookie-modal-close:hover { background: #ede8f8; transform: translateY(-1px); }
.cookie-modal-close svg { width: 18px; height: 18px; }
.cookie-preference-list { display: grid; gap: 14px; }
.cookie-preference-card {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 22px; border-radius: 24px;
  border: 1px solid rgba(74,44,138,0.09);
  background: linear-gradient(180deg, #ffffff 0%, #faf8fd 100%);
}
.cookie-preference-text h4 {
  font-size: 1rem; margin-bottom: 6px; color: #1c1422;
  font-family: 'DM Sans','Nunito',sans-serif;
}
.cookie-preference-text p {
  margin: 0; color: #5b5076; line-height: 1.62; font-size: 0.9rem;
  font-family: 'DM Sans','Nunito',sans-serif;
  max-width: 540px;
}
.cookie-toggle {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cookie-toggle input {
  position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%;
  cursor: pointer; margin: 0;
}
.cookie-toggle input:disabled { cursor: not-allowed; }
.cookie-toggle-ui {
  width: 62px; height: 36px; border-radius: 999px; position: relative;
  background: #ddd7eb; border: 1px solid rgba(74,44,138,0.12);
  box-shadow: inset 0 1px 3px rgba(28,20,34,0.08);
  transition: background 0.18s ease, border-color 0.18s ease;
}
.cookie-toggle-ui::after {
  content: ''; position: absolute; top: 4px; left: 4px; width: 26px; height: 26px;
  border-radius: 50%; background: #ffffff; box-shadow: 0 5px 14px rgba(28,20,34,0.16);
  transition: transform 0.18s ease;
}
.cookie-toggle input:checked + .cookie-toggle-ui {
  background: linear-gradient(135deg, #0d9488, #2dd4bf); border-color: rgba(13,148,136,0.24);
}
.cookie-toggle input:checked + .cookie-toggle-ui::after { transform: translateX(26px); }
.cookie-toggle input:disabled + .cookie-toggle-ui {
  background: linear-gradient(135deg, rgba(74,44,138,0.92), rgba(107,77,181,0.92));
  border-color: rgba(74,44,138,0.2);
}
.cookie-toggle input:disabled + .cookie-toggle-ui::after { transform: translateX(26px); }
.cookie-modal-actions {
  display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
}

/* ── MOBILE STICKY CTA ─────────────────────────── */
.mobile-sticky-cta { display: none; }

@media (max-width: 1240px) {
  .nav-container { padding: 0 22px; }
  .nav-link { padding: 10px 10px; font-size: 0.8rem; }
  .nav-right { gap: 8px; }
  .nav-phone { display: none; }
  .nav-socials { padding-right: 0; border-right: none; margin-right: 0; }
}
@media (max-width: 1100px) {
  .nav-container { justify-content: space-between; }
  .nav-logo { margin-right: 0; }
  .nav-menu { display: none; }
  .nav-right { display: none; }
  .nav-toggle {
    display: inline-flex; margin-left: 0;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 8px 22px rgba(20,10,46,0.14);
  }
  .nav-toggle.open { background: rgba(255,255,255,0.14); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cookie-consent-banner { align-items: stretch; flex-direction: column; }
  .cookie-consent-actions { min-width: 0; justify-content: flex-start; }
}
@media (max-width: 768px) {
  body { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
  .mobile-sticky-cta {
    position: fixed; left: 14px; right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 1200; display: flex; justify-content: center;
    pointer-events: none;
    opacity: 1; transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .mobile-sticky-cta-shell {
    width: min(100%, 430px);
    display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: 10px;
    padding: 10px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,247,252,0.98) 100%);
    border: 1px solid rgba(74,44,138,0.12);
    box-shadow: 0 18px 44px rgba(28,20,34,0.18);
    backdrop-filter: blur(18px);
    pointer-events: auto;
  }
  .mobile-sticky-cta-btn {
    min-height: 56px; padding: 0 14px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    text-decoration: none; text-align: center;
    font-size: 0.86rem; font-weight: 800; letter-spacing: 0.01em;
    font-family: 'DM Sans','Nunito',sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 8px 20px rgba(28,20,34,0.08);
  }
  .mobile-sticky-cta-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
  .mobile-sticky-cta-btn span { overflow-wrap: anywhere; }
  .mobile-sticky-cta-btn:active { transform: translateY(1px); }
  .mobile-sticky-cta-btn:focus-visible {
    outline: 2px solid rgba(13,148,136,0.85);
    outline-offset: 3px;
  }
  .mobile-sticky-cta-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #3d2278 0%, #4a2c8a 58%, #6b4db5 100%);
  }
  .mobile-sticky-cta-btn-secondary {
    color: #2d1760;
    background: linear-gradient(180deg, #ffffff 0%, #f7f4fd 100%);
    border: 1px solid rgba(74,44,138,0.12);
  }
  .mobile-sticky-cta-btn-secondary svg { color: #0d9488; }
  body.mobile-nav-open .mobile-sticky-cta,
  body.cookie-modal-open .mobile-sticky-cta,
  .cookie-consent-shell.is-banner-visible + .mobile-sticky-cta,
  .cookie-consent-shell.is-modal-visible + .mobile-sticky-cta {
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
  }
}
@media (max-width: 640px) {
  .nav-container { padding: 0 16px; }
  .nav-logo-img { height: 40px; }
  .nav-toggle { min-width: 46px; padding: 8px 10px; }
  .nav-toggle-label { display: none; }
  .mobile-nav { padding: 14px 16px calc(24px + env(safe-area-inset-bottom, 0px)); }
  .mobile-nav-accordion-toggle { min-height: 60px; padding: 12px; }
  .mobile-nav-accordion-meta { font-size: 0.74rem; }
  .mobile-nav-link { min-height: 50px; padding: 12px; }
  .mobile-nav-sub { margin-left: 14px; padding-left: 10px; }
  .mobile-socials { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .cookie-consent-shell { left: 0; right: 0; bottom: 14px; padding: 0 14px; }
  .cookie-consent-banner { padding: 22px 18px; border-radius: 22px; gap: 18px; }
  .cookie-consent-copy h3 { font-size: 1.22rem; }
  .cookie-consent-copy p { font-size: 0.88rem; }
  .cookie-consent-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  .cookie-btn { width: 100%; }
  .cookie-modal { padding: 16px; }
  .cookie-modal-dialog { padding: 24px 18px 18px; border-radius: 26px; }
  .cookie-modal-head { flex-direction: column; }
  .cookie-modal-head h3 { font-size: 1.38rem; }
  .cookie-preference-card { padding: 18px; align-items: flex-start; flex-direction: column; }
  .cookie-preference-text p { max-width: none; }
  .cookie-modal-actions { display: grid; grid-template-columns: 1fr; }
  .mobile-sticky-cta { left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
  .mobile-sticky-cta-shell { padding: 8px; gap: 8px; border-radius: 22px; }
  .mobile-sticky-cta-btn { min-height: 54px; padding: 0 12px; font-size: 0.82rem; border-radius: 15px; }
}
@media (max-width: 420px) {
  .mobile-nav-accordion-toggle { align-items: flex-start; }
  .mobile-nav-accordion-summary { align-items: flex-start; }
}
