html, body { margin: 0; padding: 0; background: var(--c-grape); overflow-x: hidden; }
/* main.css — design tokens + base typography */
:root {
  /* Color palette (Candy Pop) */
  --c-white: #FFFFFF;
  --c-cream: #FCFBF7;
  --c-bg-locations: #F4F3F8;
  --c-grape: #7C5CFF;
  --c-grape-deep: #6444EA;
  --c-mint: #6BE3B5;
  --c-sky: #5BC0EB;
  --c-pink: #FF6FB5;
  --c-yellow: #FFD93D;
  --c-ink: #1B1530;

  /* Spacing scale (rem) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 5rem;
  --sp-7: 7.5rem;

  /* Radii */
  --r-pill: 999px;
  --r-card: 16px;
  --r-card-lg: 24px;

  /* Shadow */
  --shadow-grape: 6px 6px 0 0 var(--c-grape);
  --shadow-mint: 6px 6px 0 0 var(--c-mint);
  --shadow-sky: 6px 6px 0 0 var(--c-sky);
  --shadow-pink: 6px 6px 0 0 var(--c-pink);
  --shadow-yellow: 4px 4px 0 0 var(--c-yellow);

  /* Type scale (desktop) */
  --t-hero: clamp(2.4rem, 5vw, 4.5rem);
  --t-h2: 4rem;           /* 64px */
  --t-h3: 1.75rem;        /* 28px */
  --t-body: 1.125rem;     /* 18px */
  --t-caption: 0.875rem;  /* 14px */

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 200ms;
  --dur-mid: 400ms;
  --dur-slow: 600ms;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-grape);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fredoka", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: var(--t-hero); }
h2 { font-size: var(--t-h2); font-weight: 700; }
h3 { font-size: var(--t-h3); font-weight: 600; }

a, button { font-family: inherit; }

@media (max-width: 768px) {
  :root {
    --t-hero: 3.25rem;   /* 52px */
    --t-h2: 2.5rem;      /* 40px */
    --t-h3: 1.375rem;    /* 22px */
    --t-body: 1.0625rem; /* 17px */
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Buttons ===== */
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75em 1.5em;
  border-radius: var(--r-pill);
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background-color var(--dur-fast);
}

.pill-button--primary {
  background: var(--c-grape);
  color: #FFFFFF;
  box-shadow: var(--shadow-yellow);
}
.pill-button--primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--c-yellow); }
.pill-button--primary:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--c-yellow); }

.pill-button--yellow {
  background: var(--c-yellow);
  color: var(--c-ink);
  box-shadow: 4px 4px 0 0 var(--c-grape);
}
.pill-button--yellow:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--c-grape); }
.pill-button--yellow:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--c-grape); }

.pill-button--outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.pill-button--outline:hover { background: var(--c-cream); color: var(--c-grape); }

.pill-button--ghost {
  background: var(--c-cream);
  color: var(--c-ink);
  border: 2px solid var(--c-ink);
  box-shadow: 4px 4px 0 0 var(--c-ink);
}
.pill-button--ghost:hover { background: var(--c-ink); color: #FFFFFF; transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--c-yellow); }

/* ===== Hero Unified Wrapper ===== */
.hero-wrapper {
  background: var(--c-grape);
  position: relative;
  overflow: hidden;
  padding-top: 0;
  margin: 0;
}

/* ===== Top Navigation (Floating Header) ===== */
.top-nav {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1000;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  background: transparent;
  pointer-events: none;
  transition: transform var(--dur-fast) var(--ease-out);
}

.top-nav__inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  white-space: nowrap;
  background: var(--c-cream);
  border-radius: var(--r-pill);
  padding: 0.6rem 1.25rem;
  box-shadow: 0 6px 20px rgba(27, 21, 48, 0.18), 0 2px 0 0 rgba(255, 255, 255, 0.8) inset;
  transition: box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.top-nav.is-scrolled .top-nav__inner {
  box-shadow: 0 10px 30px rgba(27, 21, 48, 0.25), 0 0 0 2px rgba(123, 92, 255, 0.12);
}

.top-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.top-nav__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(123, 92, 255, 0.25);
  transition: transform var(--dur-fast) var(--ease-spring);
}
.top-nav__logo:hover .top-nav__logo-img {
  transform: scale(1.08) rotate(-4deg);
}

.top-nav__logo-text {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--c-grape);
  letter-spacing: -0.01em;
}

.top-nav__links {
  display: flex;
  gap: clamp(1.1rem, 1.8vw, 2rem);
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-link {
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--c-ink);
  padding: 0.25rem 0;
  position: relative;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.is-active,
.nav-link[aria-current="page"] {
  color: var(--c-grape);
}
.nav-link.is-active::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--c-grape);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-pill);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--c-grape);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c-grape);
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 5.5rem 1.5rem 2.5rem;
}
.nav-overlay.is-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.nav-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  text-align: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.nav-overlay__link {
  font-family: "Fredoka", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.nav-overlay__link:hover { color: var(--c-yellow); }

/* Accordion for Locations */
.nav-overlay__accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.nav-overlay__accordion-btn {
  font-family: "Fredoka", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: color var(--dur-fast);
  padding: 0;
}
.nav-overlay__accordion-btn:hover {
  color: var(--c-yellow);
}
.nav-overlay__accordion-arrow {
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.nav-overlay__accordion-btn[aria-expanded="true"] .nav-overlay__accordion-arrow {
  transform: rotate(180deg);
  color: var(--c-yellow);
}
.nav-overlay__sublinks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: rgba(0, 0, 0, 0.14);
  border-radius: var(--r-card);
  width: 100%;
  max-width: 220px;
}
.nav-overlay__sublinks[hidden] {
  display: none !important;
}
.nav-overlay__link--sub {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

/* High Contrast Yellow Book CTA in Overlay */
.nav-overlay .nav-cta {
  background: var(--c-yellow) !important;
  color: var(--c-ink) !important;
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.75em 2.2em;
  border-radius: var(--r-pill);
  box-shadow: 4px 4px 0 0 var(--c-grape-deep), 0 8px 20px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  margin: 0.4rem auto 0.2rem;
  display: inline-block;
  text-decoration: none;
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.nav-overlay .nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--c-grape-deep);
}

body.menu-open {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none;
}

@media (max-width: 1024px) {
  .top-nav {
    top: 0.85rem;
    padding: 0 1rem;
  }
  .top-nav__links, .top-nav .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .top-nav {
    padding: 0 0.75rem;
    top: 0.65rem;
  }
  .top-nav__inner {
    padding: 0.45rem 0.85rem;
  }
  .top-nav__logo-text {
    font-size: 1.25rem;
  }
  .top-nav__logo-img {
    width: 36px;
    height: 36px;
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  color: #FFFFFF;
  padding: 8.5rem var(--sp-3) 7.5rem;
  min-height: min(85vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--sp-5);
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.kicker {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5em 1.15em;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
  box-shadow: 2px 2px 0 0 rgba(27, 21, 48, 0.2);
}

.hero__text h1 {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  margin: 0;
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  line-height: 1.12;
}
.hero__line {
  display: block;
}
@media (min-width: 580px) and (max-width: 1024px) {
  .hero__line {
    white-space: nowrap;
  }
}
.hero__line--cream { color: #FFFFFF; }
.hero__line--yellow { color: var(--c-yellow); }

.hero__sub {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-top: var(--sp-3);
  max-width: 34ch;
  line-height: 1.5;
  font-weight: 400;
}

.hero__pills {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.65rem 2rem;
  margin-top: var(--sp-3);
  max-width: 100%;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.18rem;
  font-weight: 500;
  color: #FFFFFF;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.hero__pill-dot {
  color: var(--c-yellow);
  font-size: 1.15rem;
  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@media (max-width: 600px) {
  .hero__pills {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
  }
  .hero__pill {
    font-size: 0.95rem;
  }
}

.hero__ctas {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  flex-wrap: wrap;
}

.hero__ctas .pill-button {
  font-size: 1.18rem;
  padding: 0.95em 2.1em;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
}

.hero__ctas .pill-button--yellow {
  box-shadow: 5px 5px 0 0 var(--c-grape-deep);
}
.hero__ctas .pill-button--yellow:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 0 var(--c-grape-deep);
}

.hero__ctas .pill-button--outline {
  border: 2.5px solid #FFFFFF;
}
.hero__ctas .pill-button--outline:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--c-grape-deep);
}

@media (max-width: 600px) {
  .hero__ctas .pill-button {
    font-size: 1.05rem;
    padding: 0.85em 1.4em;
    flex: 1;
    min-width: 140px;
    text-align: center;
  }
}

.hero__trust {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.hero__trust img { width: 22px; height: 22px; }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__photo {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: none;
  border-radius: var(--r-card-lg);
  box-shadow: 16px 16px 0 0 var(--c-grape-deep), 0 20px 40px rgba(27, 21, 48, 0.25);
  transform: rotate(-3deg);
  background: var(--c-cream);
  transition: transform var(--dur-mid) var(--ease-spring);
}
.hero__photo:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero__sticker {
  position: absolute;
  width: 85px; height: 85px;
  filter: drop-shadow(4px 4px 0 rgba(27, 21, 48, 0.25));
  animation: sticker-bob 3.6s ease-in-out infinite alternate;
}
.hero__sticker--star  { top: -14px; right: 5%; animation-delay: 0s; }
.hero__sticker--heart { bottom: -16px; left: -6%; animation-delay: 1.2s; transform: rotate(15deg); }

@keyframes sticker-bob {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  100% { transform: translateY(-16px) rotate(12deg) scale(1.08); }
}

/* ===== Lively Floating Dots & Blobs in Hero ===== */
.hero__blob {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}
.hero__blob--1 {
  top: -40px;
  left: -40px;
  width: 280px;
  animation: drift-blob-1 8s ease-in-out infinite alternate;
}
.hero__blob--2 {
  bottom: -60px;
  right: -50px;
  width: 340px;
  animation: drift-blob-2 9s ease-in-out infinite alternate 1s;
}

@keyframes drift-blob-1 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  100% { transform: translate(32px, 38px) rotate(16deg) scale(1.1); }
}
@keyframes drift-blob-2 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  100% { transform: translate(-38px, -28px) rotate(-14deg) scale(1.08); }
}

/* Bouncy Animated Circles */
.hero__dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero__dot--1 {
  width: 72px;
  height: 72px;
  background: var(--c-yellow);
  top: 14%;
  left: 6%;
  box-shadow: 0 8px 16px rgba(255, 217, 61, 0.35);
  animation: bounce-jump-1 3.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.hero__dot--2 {
  width: 48px;
  height: 48px;
  background: var(--c-pink);
  top: 72%;
  left: 10%;
  box-shadow: 0 6px 14px rgba(255, 111, 181, 0.35);
  animation: bounce-jump-2 4.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite 0.6s;
}
.hero__dot--3 {
  width: 84px;
  height: 84px;
  background: var(--c-mint);
  top: 18%;
  right: 12%;
  box-shadow: 0 8px 18px rgba(107, 227, 181, 0.35);
  animation: bounce-jump-3 4.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite 0.3s;
}
.hero__dot--4 {
  width: 40px;
  height: 40px;
  background: var(--c-sky);
  bottom: 16%;
  right: 22%;
  box-shadow: 0 6px 14px rgba(91, 192, 235, 0.35);
  animation: bounce-jump-1 3.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite 1.2s;
}
.hero__dot--5 {
  width: 32px;
  height: 32px;
  background: var(--c-cream);
  top: 45%;
  left: 48%;
  opacity: 0.85;
  animation: bounce-jump-2 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite 1.5s;
}
.hero__dot--6 {
  width: 56px;
  height: 56px;
  background: var(--c-yellow);
  bottom: 8%;
  left: 38%;
  box-shadow: 0 6px 14px rgba(255, 217, 61, 0.35);
  animation: bounce-jump-3 4.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite 0.9s;
}

@keyframes bounce-jump-1 {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-32px) scale(1.16) rotate(8deg);
  }
  70% {
    transform: translateY(12px) scale(0.92) rotate(-4deg);
  }
}

@keyframes bounce-jump-2 {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  40% {
    transform: translateY(-38px) scale(1.22) rotate(-12deg);
  }
  75% {
    transform: translateY(10px) scale(0.9) rotate(6deg);
  }
}

@keyframes bounce-jump-3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  45% {
    transform: translate(-18px, -30px) scale(1.14) rotate(10deg);
  }
  80% {
    transform: translate(10px, 8px) scale(0.94) rotate(-6deg);
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 8.5rem 1.5rem 6.5rem;
    min-height: auto;
    margin-top: 0;
  }
  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 0.5rem;
  }
  .hero__text {
    display: contents;
  }
  .hero .kicker {
    order: 1;
    align-self: center;
    margin-bottom: 0.75rem;
  }
  .hero__text h1 {
    order: 2;
    font-size: clamp(2.1rem, 4.4vw, 3.2rem);
    line-height: 1.15;
    margin: 0 auto 0.85rem;
    align-items: center;
    width: 100%;
    max-width: 800px;
  }
  .hero__visual {
    order: 3;
    margin: 0.75rem auto 1.5rem;
    width: 100%;
    max-width: 360px;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .hero__photo {
    transform: rotate(-3deg);
    max-width: 300px;
    box-shadow: 12px 12px 0 0 var(--c-grape-deep), 0 16px 32px rgba(27, 21, 48, 0.25);
    border-radius: var(--r-card);
    transition: transform var(--dur-mid) var(--ease-spring);
  }
  .hero__photo:hover {
    transform: rotate(0deg) scale(1.02);
  }
  .hero__sticker {
    width: 64px;
    height: 64px;
  }
  .hero__sticker--star {
    top: -16px;
    right: 0;
  }
  .hero__sticker--heart {
    bottom: -12px;
    left: 0;
  }
  .hero__sub {
    order: 4;
    font-size: 1.15rem;
    margin: 0 auto 1.25rem;
    text-align: center;
    max-width: 580px;
    line-height: 1.55;
  }
  .hero__pills {
    order: 5;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.65rem 1.5rem;
    margin: 0 auto 1.5rem;
    width: 100%;
    max-width: 440px;
    justify-items: center;
  }
  .hero__pill {
    font-size: 0.96rem;
    white-space: nowrap;
  }
  .hero__ctas {
    order: 6;
    margin-top: 0;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    gap: 0.85rem;
    display: flex;
    justify-content: center;
  }
  .hero__ctas .pill-button {
    font-size: 1.05rem;
    padding: 0.85em 1.4em;
    flex: 1;
    min-width: 140px;
    text-align: center;
  }
  .hero__trust {
    order: 7;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0.6rem;
    margin-top: 0;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    justify-content: center;
  }
  .hero__trust li:first-child {
    display: none !important;
  }
  .hero__trust li {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    font-size: 0.88rem;
    padding: 0.45rem 0.6rem;
    white-space: nowrap;
    text-align: center;
    gap: 0.35rem;
  }
  .hero__trust img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .hero__dot--1 { width: 56px; height: 56px; }
  .hero__dot--3 { width: 64px; height: 64px; }
}

@media (max-width: 640px) {
  .hero {
    padding: 6.75rem 1rem 5.5rem;
  }
  .hero__text h1 {
    font-size: clamp(1.65rem, 6.8vw, 2.25rem);
    line-height: 1.18;
    max-width: 100%;
  }
  .hero__visual {
    margin: 0.5rem auto 1.25rem;
    max-width: 290px;
  }
  .hero__photo {
    transform: rotate(-2.5deg);
    max-width: 260px;
    box-shadow: 10px 10px 0 0 var(--c-grape-deep), 0 14px 28px rgba(27, 21, 48, 0.25);
  }
  .hero__sticker {
    width: 52px;
    height: 52px;
  }
  .hero__sticker--star {
    top: -14px;
    right: 2px;
  }
  .hero__sticker--heart {
    bottom: -10px;
    left: 2px;
  }
  .hero__sub {
    font-size: 1rem;
    max-width: 100%;
  }
  .hero__pills {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem 0.75rem;
    margin: 0 auto 1.25rem;
    max-width: 340px;
  }
  .hero__pill {
    font-size: 0.88rem;
    white-space: normal;
  }
  .hero__ctas {
    margin-bottom: 1.25rem;
    gap: 0.6rem;
    max-width: 340px;
  }
  .hero__ctas .pill-button {
    font-size: 0.98rem;
    padding: 0.75em 1em;
    flex: 1;
    min-width: 120px;
  }
  .hero__trust {
    flex-wrap: nowrap !important;
    gap: 0.45rem;
    max-width: 340px;
  }
  .hero__trust li {
    font-size: 0.84rem;
    padding: 0.45rem 0.35rem;
  }
  .hero__trust img {
    width: 16px;
    height: 16px;
  }
  .hero__dot--1 { width: 44px; height: 44px; }
  .hero__dot--3 { width: 50px; height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__blob, .hero__sticker, .hero__dot { animation: none !important; }
}

/* ===== Seamless Infinite Marquee ===== */
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: 0.95rem 0;
  border-block: 4px solid var(--c-ink);
  position: relative;
  width: 100%;
}

.marquee__inner {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  white-space: nowrap;
  flex-shrink: 0;
  animation: marquee-infinite 26s linear infinite;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none !important; }
}

/* ===== Locations Section ===== */
.locations {
  position: relative;
  background: var(--c-bg-locations);
  padding: var(--sp-7) var(--sp-3);
  padding-top: var(--sp-6);
}

.locations__divider {
  position: absolute;
  top: -2px; left: 0; right: 0;
  width: 100%; height: 40px;
  display: block;
}

.locations__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: var(--sp-3);
  color: var(--c-ink);
}

.locations__lede {
  text-align: center;
  max-width: 660px;
  margin: 0 auto var(--sp-5);
  color: var(--c-ink);
  font-size: 1.15rem;
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.location-card {
  position: relative;
  background: var(--c-cream);
  border: 4px solid #FFFFFF;
  border-radius: var(--r-card);
  box-shadow: 0 12px 0 0 var(--c-grape), 0 16px 32px rgba(27, 21, 48, 0.08);
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 0 0 var(--c-grape), 0 24px 40px rgba(27, 21, 48, 0.12);
}

.location-card--montreal { --rotation: 0deg; }
.location-card--kirkland { --rotation: 0deg; }
.location-card--ottawa   { --rotation: 0deg; }

.location-card__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.location-card__banner {
  position: absolute;
  top: 16px; left: -8px;
  padding: 0.4em 1.2em;
  color: #FFFFFF;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 4px 4px 0 0 rgba(27, 21, 48, 0.4);
}
.location-card--montreal .location-card__banner { background: var(--c-grape); }
.location-card--kirkland .location-card__banner { background: var(--c-pink); }
.location-card--ottawa   .location-card__banner { background: var(--c-sky); color: var(--c-ink); }

.location-card__body {
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.location-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.location-card__header h3 {
  font-size: 1.5rem;
  font-family: "Fredoka", sans-serif;
  color: var(--c-ink);
  margin: 0;
}

.location-card__badge {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
  box-shadow: 1px 1px 0 0 rgba(27, 21, 48, 0.2);
}

.location-card__activities {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-height: 64px;
  align-content: flex-start;
  margin-bottom: 0.5rem;
}

.location-card__activities > span {
  display: inline-block;
  background: rgba(124, 92, 255, 0.08);
  color: var(--c-grape-deep);
  padding: 0.18rem 0.55rem;
  border-radius: var(--r-pill);
  font-size: 0.76rem;
  font-weight: 600;
}

.location-tag--extra.is-hidden {
  display: none !important;
}

.location-card__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 92, 255, 0.16);
  color: var(--c-grape-deep);
  border: 1px solid rgba(124, 92, 255, 0.28);
  padding: 0.18rem 0.55rem;
  border-radius: var(--r-pill);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.2;
  transition: transform var(--dur-fast), background var(--dur-fast), border-color var(--dur-fast);
}

.location-card__more-btn:hover {
  background: rgba(124, 92, 255, 0.26);
  border-color: rgba(124, 92, 255, 0.45);
  transform: translateY(-1px);
}

.location-card__divider {
  height: 1px;
  background: rgba(27, 21, 48, 0.1);
  margin: 0.4rem 0 0.85rem;
  width: 100%;
}

.location-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.location-card__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.4;
}

.location-card__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.75;
}

.location-card__detail-item address {
  font-style: normal;
  color: var(--c-ink);
  font-size: 0.88rem;
  line-height: 1.4;
}

.location-card__phone-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-grape-deep);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--dur-fast);
}

.location-card__phone-link:hover {
  color: var(--c-ink);
  text-decoration: underline;
}

.location-card__hours-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.82rem;
  color: #55506E;
  line-height: 1.35;
  font-weight: 500;
}

.location-card__closed {
  color: #8C86A8;
  font-size: 0.78rem;
  font-style: italic;
}

.location-card__ctas {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.location-card__ctas .pill-button {
  flex: 1;
  min-width: 110px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .locations__grid { grid-template-columns: 1fr; }
  .location-card { transform: none !important; }
}

@media (max-width: 480px) {
  .location-card__ctas {
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
  .location-card__ctas .pill-button {
    min-width: 0;
    font-size: 0.88rem;
    padding: 0.65rem 0.4rem;
    white-space: nowrap;
  }
  .location-card__body {
    padding: 1.1rem 1rem 1.15rem;
  }
}

/* ===== Services (Choose Your Craft - Mint Green Background) ===== */
.services {
  background: var(--c-mint);
  color: var(--c-ink);
  padding: var(--sp-7) var(--sp-3);
  position: relative;
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services__header {
  margin-bottom: var(--sp-5);
  max-width: 680px;
}
.services__header .kicker {
  background: var(--c-grape);
  color: #FFFFFF;
}
.services__header h2 {
  margin: var(--sp-2) 0;
  color: var(--c-ink);
}
.services__header p {
  color: var(--c-ink);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}

.services__grid,
.services__grid--dynamic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  align-items: stretch;
}

.service-card {
  background: var(--c-cream);
  border-radius: var(--r-card-lg);
  border: 3px solid var(--c-ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  grid-column: span 1 !important;
  box-shadow: 0 8px 0 0 var(--c-grape);
  transition: transform var(--dur-mid) var(--ease-spring), box-shadow var(--dur-mid) var(--ease-spring);
}
.service-card:hover {
  transform: translateY(-5px);
}

/* Individual Card Shadows */
.service-card--tufting        { box-shadow: 0 8px 0 0 var(--c-yellow); }
.service-card--tufting:hover  { box-shadow: 0 13px 0 0 var(--c-yellow); }

.service-card--fluid-bear       { box-shadow: 0 8px 0 0 var(--c-pink); }
.service-card--fluid-bear:hover { box-shadow: 0 13px 0 0 var(--c-pink); }

.service-card--decoden       { box-shadow: 0 8px 0 0 var(--c-sky); }
.service-card--decoden:hover { box-shadow: 0 13px 0 0 var(--c-sky); }

.service-card--candle       { box-shadow: 0 8px 0 0 var(--c-grape); }
.service-card--candle:hover { box-shadow: 0 13px 0 0 var(--c-grape); }

.service-card--ring       { box-shadow: 0 8px 0 0 #B8C0EC; }
.service-card--ring:hover { box-shadow: 0 13px 0 0 #B8C0EC; }

.service-card--beads       { box-shadow: 0 8px 0 0 #4ECCA3; }
.service-card--beads:hover { box-shadow: 0 13px 0 0 #4ECCA3; }

.service-card--pixel-beads       { box-shadow: 0 8px 0 0 #FF9F43; }
.service-card--pixel-beads:hover { box-shadow: 0 13px 0 0 #FF9F43; }

.service-card--beaded-pen       { box-shadow: 0 8px 0 0 #FF6FB5; }
.service-card--beaded-pen:hover { box-shadow: 0 13px 0 0 #FF6FB5; }

.service-card--keyboard-chain       { box-shadow: 0 8px 0 0 #4D96FF; }
.service-card--keyboard-chain:hover { box-shadow: 0 13px 0 0 #4D96FF; }

.service-card--neon       { box-shadow: 0 8px 0 0 #FFD93D; }
.service-card--neon:hover { box-shadow: 0 13px 0 0 #FFD93D; }

.service-card--patch       { box-shadow: 0 8px 0 0 var(--c-grape); }
.service-card--patch:hover { box-shadow: 0 13px 0 0 var(--c-grape); }

.service-card__photo {
  width: 100%;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform var(--dur-mid) var(--ease-out);
}
.service-card:hover .service-card__photo { transform: scale(1.03); }

.service-card__body {
  padding: 1.15rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}
.service-card__body h3 {
  font-size: 1.35rem;
  font-family: "Fredoka", sans-serif;
  color: var(--c-ink);
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.service-card__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.05rem;
  margin-bottom: 0.25rem;
}
.service-card__locations span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-grape-deep);
  background: rgba(124, 92, 255, 0.1);
  padding: 0.15rem 0.55rem;
  border-radius: var(--r-pill);
}

.service-card__body p {
  font-size: 0.88rem;
  line-height: 1.45;
  color: #433D5A;
  margin-bottom: 0.35rem;
  flex-grow: 1;
}

.service-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
  padding: 0;
  list-style: none;
}
.chip {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-ink);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.25em 0.7em;
  border-radius: var(--r-pill);
}
.service-card--tufting  .chip { background: var(--c-yellow); }
.service-card--fluid-bear .chip { background: var(--c-pink); color: #FFFFFF; }
.service-card--decoden  .chip { background: var(--c-sky);   color: var(--c-ink); }
.service-card--candle   .chip { background: var(--c-grape); color: #FFFFFF; }
.service-card--ring     .chip { background: #B8C0EC; color: var(--c-ink); }
.service-card--beads    .chip { background: #4ECCA3; color: var(--c-ink); }
.service-card--pixel-beads .chip { background: #FF9F43; color: #FFFFFF; }
.service-card--beaded-pen  .chip { background: #FF6FB5; color: #FFFFFF; }
.service-card--keyboard-chain .chip { background: #4D96FF; color: #FFFFFF; }
.service-card--neon     .chip { background: #FFD93D; color: var(--c-ink); }
.service-card--patch    .chip { background: var(--c-grape); color: #FFFFFF; }

.service-card__body .pill-button {
  margin-top: 0.85rem !important;
  width: 100%;
  text-align: center;
  padding: 0.6em 1.2em;
  font-size: 0.95rem;
  font-weight: 700;
}

.services__footer {
  margin-top: var(--sp-5);
  text-align: center;
}

/* Tablet: 2 cards per row */
@media (max-width: 1024px) and (min-width: 641px) {
  .services__grid,
  .services__grid--dynamic {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem;
  }
}

/* Mobile: 1 card per row */
@media (max-width: 640px) {
  .services__grid,
  .services__grid--dynamic {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
}

/* ===== Contact Section ===== */
.contact {
  position: relative;
  background: var(--c-grape);
  color: #FFFFFF;
  padding: var(--sp-7) var(--sp-3);
  overflow: hidden;
  isolation: isolate;
}

.contact__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact__lede {
  margin: var(--sp-3) auto var(--sp-5);
  max-width: 600px;
  font-size: 1.25rem;
}

.contact__card {
  background: var(--c-cream);
  color: var(--c-ink);
  border-radius: var(--r-card-lg);
  max-width: 900px;
  margin: 0 auto;
  padding: var(--sp-5);
  box-shadow: 0 12px 0 0 var(--c-yellow), 0 20px 40px rgba(27, 21, 48, 0.2);
}

.contact__channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  text-align: left;
  margin-bottom: var(--sp-4);
}

.contact-channel__label {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-grape);
  margin-bottom: 0.5rem;
}
.contact-channel__value {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--c-ink);
  word-break: break-word;
  text-decoration: none;
}
.contact-channel__value:hover { color: var(--c-grape); }

.contact-channel__list {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-ink);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0;
  list-style: none;
}

.contact__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 2px dashed rgba(27, 21, 48, 0.15);
  flex-wrap: wrap;
}

.social-pills {
  display: flex;
  gap: 0.75rem;
}
.social-pill {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  background: var(--c-grape);
  color: #FFFFFF;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast);
}
.social-pill:hover { transform: translateY(-2px); background: var(--c-ink); }
.social-pill img { width: 22px; height: 22px; }

.contact__cta { background: var(--c-yellow); color: var(--c-ink); box-shadow: var(--shadow-grape); }
.contact__cta:hover { background: var(--c-yellow); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--c-grape); }

.contact__closer {
  margin-top: var(--sp-4);
  font-style: italic;
  color: var(--c-ink);
  opacity: 0.75;
}

.contact__blob {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: drift-blob-1 14s ease-in-out infinite alternate;
}
.contact__blob--1 { top: -40px; right: -60px; width: 280px; }
.contact__blob--2 { bottom: -80px; left: -40px; width: 240px; animation-delay: 5s; }

@media (max-width: 768px) {
  .contact {
    padding: var(--sp-5) var(--sp-2) var(--sp-6);
  }
  .contact__card {
    padding: 1.5rem 1.15rem;
  }
  .contact__channels {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: var(--sp-3);
  }
  .contact-channel__value {
    font-size: 1.1rem;
  }
  .contact__bottom {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .contact__cta {
    width: 100%;
    text-align: center;
    font-size: 1.05rem;
    padding: 0.85em 1.5em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact__blob { animation: none; }
}

/* ===== Scroll Reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--c-grape-deep);
  color: #FFFFFF;
  padding: var(--sp-6) var(--sp-3) 1.5rem;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.site-footer__column h4 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: var(--sp-2);
  color: var(--c-yellow);
}
.site-footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}
.site-footer__column a {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color var(--dur-fast);
}
.site-footer__column a:hover { text-decoration-color: var(--c-yellow); }

.site-footer__bottom {
  text-align: center;
  padding-top: 1rem;
  margin-top: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}
.site-footer__column .site-footer__brand {
  margin-bottom: 1.5rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--c-yellow);
}

.site-footer__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-yellow);
}

.site-footer__copy {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.site-footer__copy a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
  transition: color var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out), text-decoration var(--dur-fast);
}
.site-footer__copy a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
  }
  .site-footer__column--brand {
    grid-column: 1 / -1;
    margin-bottom: 0.25rem;
  }
  .site-footer__column:last-child {
    grid-column: 1 / -1;
    margin-top: 0.25rem;
  }
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .site-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
  .site-footer__column h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }
  .site-footer__column ul {
    gap: 0.4rem;
    font-size: 0.88rem;
  }
}


/* ==========================================================================
   Booking Modal
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 90vh;
  background: var(--c-cream);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modal.is-open .modal__content {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: var(--c-grape);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  font-size: 1.5rem;
  line-height: 1;
  transition: background 0.2s, transform 0.2s, color 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal__close:hover {
  background: var(--c-yellow);
  color: var(--c-ink);
  transform: translateX(-50%) scale(1.1);
}

.modal__iframe {
  width: 100%;
  flex: 1;
  border: none;
  background: #f9f9f9;
}

/* ==========================================================================
   Activity Detail Modal & Service Card Enhancements
   ========================================================================== */
.services .service-card {
  cursor: pointer;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  outline: none;
}

.services .service-card:focus-visible {
  outline: 3px solid var(--c-grape);
  outline-offset: 4px;
}

.service-card__click-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-grape);
  background: var(--c-lavender);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  margin-top: 0.5rem;
  align-self: flex-start;
  transition: all 0.2s ease;
  border: 1px solid rgba(100, 68, 234, 0.2);
}

.service-card:hover .service-card__click-badge {
  background: var(--c-yellow);
  color: var(--c-ink);
  border-color: var(--c-ink);
  transform: translateX(3px);
}

.activity-modal {
  z-index: 10000;
}

.activity-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  background: var(--c-cream);
  border-radius: 1.5rem;
  box-shadow: 0 24px 48px rgba(31, 26, 36, 0.28), 0 0 0 1px rgba(31, 26, 36, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.activity-modal.is-open .activity-modal__dialog {
  transform: translateY(0) scale(1);
}

.activity-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(31, 26, 36, 0.75);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.25rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.activity-modal__close:hover {
  background: var(--c-yellow);
  color: var(--c-ink);
  border-color: var(--c-ink);
  transform: scale(1.1);
}

.activity-modal__media {
  position: relative;
  width: 100%;
  height: 240px;
  background: #2A2533;
  overflow: hidden;
  flex-shrink: 0;
}

.activity-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.activity-modal__media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 26, 36, 0.65) 0%, rgba(31, 26, 36, 0.15) 50%, transparent 100%);
}

.activity-modal__locations {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  z-index: 2;
}

.activity-modal__location-tag {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: var(--c-ink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.activity-modal__body {
  padding: 1.5rem 1.75rem 1.25rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.activity-modal__title-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.activity-modal__title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1.15;
  margin: 0;
}

.activity-modal__tagline {
  font-size: 1rem;
  color: #665F6B;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.activity-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.activity-modal__chips .chip {
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 9999px;
  border: 1.5px solid var(--c-ink);
  background: var(--c-cream);
  color: var(--c-ink);
}

.activity-modal__chips .chip--price {
  background: var(--c-yellow);
}

.activity-modal__chips .chip--duration {
  background: var(--c-lavender);
}

.activity-modal__chips .chip--age {
  background: var(--c-pink);
  color: #FFFFFF;
  border-color: #E26D82;
}

.activity-modal__section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity-modal__subtitle {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-grape);
  margin: 0;
}

.activity-modal__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #3D3745;
  margin: 0;
}

.activity-modal__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity-modal__highlights li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #4A4452;
}

.activity-modal__highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-grape);
  font-size: 0.875rem;
}

.activity-modal__pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.activity-modal__pricing-item {
  background: #FFFFFF;
  border: 1.5px solid rgba(31, 26, 36, 0.1);
  border-radius: 0.875rem;
  padding: 0.85rem 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.activity-modal__pricing-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 0.15rem;
}

.activity-modal__pricing-size {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.3;
}

.activity-modal__pricing-cost {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--c-grape);
  background: var(--c-lavender);
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
  display: inline-block;
  white-space: nowrap;
}

.activity-modal__pricing-desc {
  font-size: 0.8125rem;
  color: #6E6875;
  line-height: 1.4;
  margin: 0;
}

.activity-modal__notice {
  background: #FFF8E7;
  border-left: 4px solid var(--c-yellow);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #685312;
  font-weight: 500;
}

.activity-modal__footer {
  padding: 1rem 1.75rem 1.25rem;
  background: #FFFFFF;
  border-top: 1px solid rgba(31, 26, 36, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.activity-modal__footer-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.activity-modal__btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--c-grape);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.55rem 1.2rem;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.activity-modal__btn-book:hover {
  background: var(--c-yellow);
  color: var(--c-ink);
  transform: translateY(-2px);
}

.activity-modal__btn-close {
  background: transparent;
  color: #6E6875;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
  border: 1.5px solid rgba(31, 26, 36, 0.15);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.activity-modal__btn-close:hover {
  background: rgba(31, 26, 36, 0.05);
  color: var(--c-ink);
}

@media (max-width: 600px) {
  .activity-modal__dialog {
    max-height: 94vh;
    border-radius: 1.25rem;
  }
  .activity-modal__media {
    height: 180px;
  }
  .activity-modal__body {
    padding: 1.25rem 1.25rem 1rem;
    gap: 1rem;
  }
  .activity-modal__title {
    font-size: 1.5rem;
  }
  .activity-modal__footer {
    padding: 0.85rem 1.25rem;
  }
}

/* Dropdown & CTA Styles */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown__menu {
  position: absolute; top: calc(100% + 0.5rem); left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--c-cream); border-radius: 1rem; padding: 0.5rem; min-width: 160px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transition: all 0.2s ease;
  z-index: 100; display: flex; flex-direction: column; gap: 0.25rem;
}
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--c-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.75rem;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.nav-dropdown__menu a:hover, .nav-dropdown__menu a:focus {
  background: var(--c-yellow);
  color: var(--c-ink);
}
.nav-overlay__group { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; margin: 0.5rem 0; }
.nav-overlay__label { font-size: 1rem; font-weight: 700; color: var(--c-yellow); text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; margin-bottom: -0.25rem; }
.nav-overlay__link--sub { font-size: 1.5rem !important; }
.location-card__ctas { display: flex; gap: 0.75rem; margin-top: 0; flex-wrap: wrap; }
.location-card__ctas .pill-button { flex: 1; min-width: 110px; padding: 0.8rem 1rem; font-size: 0.95rem; text-align: center; }

/* Additional Activities */
.service-card--ring  { grid-column: span 3; box-shadow: 0 10px 0 0 var(--c-yellow); }
.service-card--beads { grid-column: span 2; box-shadow: 0 10px 0 0 var(--c-pink); }
.service-card--neon  { grid-column: span 2; box-shadow: 0 10px 0 0 var(--c-grape); }
.service-card--patch { grid-column: span 3; box-shadow: 0 10px 0 0 var(--c-sky); }

.service-card:hover.service-card--ring  { box-shadow: 0 16px 0 0 var(--c-yellow); }
.service-card:hover.service-card--beads { box-shadow: 0 16px 0 0 var(--c-pink); }
.service-card:hover.service-card--neon  { box-shadow: 0 16px 0 0 var(--c-grape); }
.service-card:hover.service-card--patch { box-shadow: 0 16px 0 0 var(--c-sky); }

.service-card--beads .service-card__photo,
.service-card--neon .service-card__photo { aspect-ratio: 1 / 1; }

.service-card--ring .chip  { background: var(--c-yellow); color: var(--c-ink); }
.service-card--beads .chip { background: var(--c-pink); color: #FFFFFF; }
.service-card--neon .chip  { background: var(--c-grape); color: #FFFFFF; }
.service-card--patch .chip { background: var(--c-sky); color: var(--c-ink); }

@media (max-width: 1024px) {
  .service-card--beads .service-card__photo,
  .service-card--neon .service-card__photo { aspect-ratio: 3 / 2; }
}

/* Location Card specific outline button */
.location-card__ctas .pill-button--outline {
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.location-card__ctas .pill-button--outline:hover {
  background: var(--c-ink);
  color: #FFFFFF;
}

/* Footer Brand Column */
.site-footer__column--brand {
  display: flex;
  justify-content: center;
}
.site-footer__column--brand .site-footer__brand {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  margin-bottom: 0;
}
.site-footer__column--brand .site-footer__logo-img {
  width: 96px;
  height: 96px;
}

.extra-activity.is-hidden { display: none !important; }

/* Large Pill Buttons for Section Footers */
.pill-button--lg {
  font-size: 1.15rem;
  padding: 0.95rem 2.2rem;
  font-weight: 700;
}
.services__footer {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--sp-5);
}
.services__footer .pill-button--outline {
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.services__footer .pill-button--outline:hover {
  background: var(--c-ink);
  color: #FFFFFF;
}

/* Location Card Activities Subtitle */
.location-card__activities {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-grape);
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-height: 86px;
  align-content: flex-start;
}
.location-card__activities span {
  display: inline-block;
  background: rgba(124, 92, 255, 0.1);
  color: var(--c-grape-deep);
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Contact Tabs */
.contact-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: var(--sp-4);
  border-bottom: 2px solid rgba(27, 21, 48, 0.08);
  padding-bottom: 1.25rem;
  flex-wrap: wrap;
}
.contact-tab {
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.6rem 1.6rem;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--c-ink);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.contact-tab:hover {
  background: rgba(124, 92, 255, 0.1);
  color: var(--c-grape);
}
.contact-tab.is-active {
  background: var(--c-grape);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(124, 92, 255, 0.35);
}

@media (max-width: 640px) {
  .contact-tabs {
    flex-wrap: nowrap;
    gap: 0.35rem;
    margin-bottom: var(--sp-3);
    padding-bottom: 0.85rem;
    width: 100%;
    justify-content: stretch;
  }
  .contact-tab {
    flex: 1 1 0;
    min-width: 0;
    font-size: 0.92rem;
    padding: 0.5rem 0.2rem;
    text-align: center;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .contact-tab {
    font-size: 0.82rem;
    padding: 0.45rem 0.15rem;
  }
}

.contact-tab-panel {
  display: none;
}
.contact-tab-panel.is-active {
  display: block;
  animation: fadeInTab 0.3s var(--ease-out);
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FAQ Page & Accordion Styles */
.faq-section {
  padding: var(--sp-6) var(--sp-3);
  background: var(--c-cream);
}
.faq-container {
  max-width: 880px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.faq-item {
  background: #FFFFFF;
  border: 3px solid var(--c-ink);
  border-radius: var(--r-card);
  box-shadow: 0 8px 0 0 var(--c-grape);
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 0 var(--c-grape);
}
.faq-item summary {
  padding: 1.35rem 1.6rem;
  font-family: "Fredoka", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .faq-icon {
  width: 34px;
  height: 34px;
  background: rgba(124, 92, 255, 0.12);
  color: var(--c-grape);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
  background: var(--c-yellow);
  color: var(--c-ink);
}
.faq-content {
  padding: 0 1.6rem 1.6rem 1.6rem;
  color: var(--c-ink);
  font-size: 1.05rem;
  line-height: 1.7;
  border-top: 1px dashed rgba(27, 21, 48, 0.12);
  margin-top: 0.25rem;
  padding-top: 1.25rem;
}
.faq-steps {
  margin: 0.85rem 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-steps li {
  font-weight: 600;
}
.faq-highlight-box {
  background: rgba(255, 217, 61, 0.25);
  border-left: 4px solid var(--c-yellow);
  padding: 0.85rem 1.2rem;
  border-radius: 0 0.75rem 0.75rem 0;
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}

.contact__common-info {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 2px dashed rgba(27, 21, 48, 0.15);
}
.contact__common-email {
  margin-bottom: var(--sp-3);
  text-align: left;
}

/* ===== Language Switcher ===== */
.nav-dropdown--lang {
  margin-left: -0.25rem;
}
.nav-link--lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(27, 21, 48, 0.05);
  border: 1px solid rgba(27, 21, 48, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-ink);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.nav-link--lang::after {
  display: none !important;
}
.nav-link--lang:hover,
.nav-dropdown:hover .nav-link--lang {
  background: var(--c-yellow);
  color: var(--c-ink);
  border-color: var(--c-yellow);
}
.nav-dropdown__menu--lang {
  min-width: 175px;
  padding: 0.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
}
.nav-dropdown__menu--lang a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  text-align: left;
  border-radius: 0.6rem;
}
.nav-dropdown__menu--lang a.is-active {
  background: rgba(100, 68, 234, 0.12);
  color: var(--c-grape);
  font-weight: 800;
}
.nav-dropdown__menu--lang a.is-active::after {
  content: "✓";
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--c-grape);
}
.nav-lang-flag {
  font-size: 1.15rem;
  line-height: 1;
}

/* Mobile Language Selector Dropdown (matching Desktop) */
.nav-overlay__lang-section {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.nav-overlay__lang-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-yellow);
}
.nav-overlay__lang-dropdown {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.nav-overlay__lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 0.45rem 1.15rem !important;
  border-radius: var(--r-pill) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--c-ink) !important;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
.nav-overlay__lang-trigger:hover,
.nav-overlay__lang-dropdown.is-open .nav-overlay__lang-trigger {
  background: var(--c-yellow) !important;
  color: var(--c-ink) !important;
  border-color: var(--c-yellow) !important;
}
.nav-overlay__lang-menu {
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: none !important;
  margin-top: 0.65rem !important;
  min-width: 190px !important;
  background: var(--c-cream) !important;
  border-radius: 1rem !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
  padding: 0.5rem !important;
}
.nav-overlay__lang-dropdown.is-open .nav-overlay__lang-menu {
  display: flex !important;
}
.nav-overlay__lang-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--c-ink);
  text-decoration: none;
  border-radius: 0.6rem;
}
.nav-overlay__lang-menu a:hover,
.nav-overlay__lang-menu a.is-active {
  background: rgba(100, 68, 234, 0.12);
  color: var(--c-grape);
  font-weight: 700;
}
.nav-overlay__lang-menu a.is-active::after {
  content: "✓";
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--c-grape);
}


