﻿:root {
      --mint: #afd6b9;
      --coral: #df6163;
      --yellow: #f0d08b;
      --sun: #ebbcaa;
      --blue: #0071bc;
      --violet: #8968a7;
      --deep-blue: #149c75;
      --paper: #f7f0df;
      --ink: #0f2a3d;
      --soft-pill: #afd6b9;
      --pink-soft: #fbe3ef;
      --display-font: "Anton", "Oswald", "Arial Narrow", sans-serif;
      /* Pantone-inspired palette */
      --pantone-purple-2075: #8968a7;
      --pantone-yellow-7507: #f0d08b;
      --pantone-green-7724: #149c75;
      --pantone-light-green-2246: #afd6b9;
      --pantone-red-2346: #df6163;
      --pantone-blue-285: #0071bc;
      --pantone-pink-2337: #ebbcaa;
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; overflow-x: hidden; }
    html { scroll-behavior: smooth; }

    body {
      font-family: "Space Grotesk", "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
    }

    .site-nav {
      position: sticky;
      top: 0;
      z-index: 1500;
      background: rgba(0, 111, 78, 0.94);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .site-nav-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0.7rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .site-brand {
      margin: 0;
      color: var(--yellow);
      font-family: var(--display-font);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-size: clamp(1rem, 2vw, 1.2rem);
      line-height: 1;
      white-space: nowrap;
      text-decoration: none;
      display: inline-block;
    }

    .site-menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 0.35rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .site-menu a {
      display: inline-block;
      text-decoration: none;
      color: var(--paper);
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      padding: 0.35rem 0.6rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .site-menu a:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.45);
    }

    .site-wrap { width: 100%; }

    .asd-section {
      width: 100%;
      padding: 74px clamp(1rem, 2.4vw, 2rem);
      scroll-margin-top: 82px;
    }

    .asd-section > * {
      max-width: 1120px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }

    .asd-section.hero {
      background: var(--mint);
      padding: 0;
      overflow: hidden;
    }

    .hero > * {
      max-width: none;
    }

    .hero-image {
      display: block;
      width: 100%;
      height: auto;
    }

    .title-line {
      margin: 0 0 1.5rem;
      font-family: var(--display-font);
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--yellow);
      font-size: clamp(2.2rem, 7vw, 5.2rem);
      line-height: 0.95;
      text-align: center;
    }

    .section-coral { background: var(--coral); }
    .section-yellow { background: var(--yellow); }
    .section-violet { background: var(--violet); }
    .section-blue { background: var(--deep-blue); color: var(--paper); }
    .section-green { background: var(--mint); }
    .section-paper { background: var(--paper); }

    .intro-band {
      background: var(--paper);
      text-align: center;
      padding-top: 74px;
      padding-bottom: 74px;
    }

    .intro-band > * {
      max-width: none;
      width: 100%;
    }

    .intro-band h2 {
      margin: 0 0 0.6rem;
      padding-bottom: 0.45rem;
      font-family: var(--display-font);
      text-transform: uppercase;
      color: var(--blue);
      letter-spacing: 0.02em;
      font-size: clamp(2.2rem, 7vw, 5.2rem);
      line-height: 0.95;
      text-align: center;
      display: block;
      width: 100%;
    }

    .intro-band p {
      margin: 0 auto;
      max-width: 62ch;
      font-size: clamp(1rem, 2vw, 1.2rem);
      line-height: 1.45;
      text-align: center;
    }

    .activities-section { padding-top: 74px; padding-bottom: 74px; }
    .activities-section > * { max-width: none; }
    .activities-section .title-line { margin: 0 auto 1.4rem; }

    .activity-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.15rem;
      width: 100%;
    }

    .activity-card {
      position: relative;
      min-height: 360px;
      border-radius: 28px;
      overflow: hidden;
      cursor: pointer;
      border: 0;
      background: var(--paper);
    }

    .activity-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.22), rgba(0,0,0,0) 55%);
      pointer-events: none;
    }

    .activity-image {
      width: 100%;
      height: 100%;
      min-height: 360px;
      object-fit: cover;
      display: block;
      transform: scale(1);
      transition: transform 0.28s ease;
    }

    .activity-card:hover .activity-image,
    .activity-card:focus-visible .activity-image { transform: scale(1.04); }

    .card-label {
      position: absolute;
      left: 1rem;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      margin: 0;
      text-align: center;
      font-family: var(--display-font);
      text-transform: uppercase;
      letter-spacing: 0.03em;
      font-size: clamp(1.8rem, 3.1vw, 3rem);
      line-height: 0.88;
      color: var(--yellow);
      text-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
    }

    .highlights-section > * { max-width: none; }
    .highlights-wrap { display: block; }
    .highlights-section {
      background: var(--pantone-blue-285);
    }

    .highlights-text {
      background: transparent;
      padding: 0;
      margin-bottom: 1rem;
    }

    .highlights-text h2 {
      margin: 0 0 0.9rem;
      color: var(--pantone-pink-2337);
      font-family: var(--display-font);
      font-size: clamp(2.2rem, 7vw, 5.2rem);
      text-transform: uppercase;
      line-height: 0.95;
      letter-spacing: 0.02em;
      text-align: center;
      width: 100%;
      max-width: none;
    }

    .title-line,
    .intro-band h2,
    .highlights-text h2,
    .stores-title,
    .contact-title {
      display: block;
      width: 100%;
      max-width: none;
      text-align: center;
    }

    .highlights-text p {
      margin: 0 auto;
      max-width: 86ch;
      font-size: clamp(1.15rem, 2vw, 1.45rem);
      line-height: 1.45;
      color: var(--pink-soft);
      text-align: center;
    }

    .stores-title {
      margin: 0 0 0.65rem;
      color: var(--pantone-yellow-7507);
      font-family: var(--display-font);
      text-transform: uppercase;
      font-size: clamp(1.1rem, 2.2vw, 1.8rem);
      line-height: 1;
    }

    .highlight-grid {
      background: rgba(6, 70, 129, 0.55);
      border-radius: 14px;
      padding: 0.85rem;
      border: 2px solid rgba(255, 255, 255, 0.24);
    }

    body[data-region-slug] .highlight-grid {
      background: transparent;
      border: 0;
      border-radius: 0;
      padding: 0;
    }

    .stores-grid {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .store-card {
      background: rgba(10, 50, 98, 0.82);
      border: 2px solid rgba(255, 107, 163, 0.5);
      border-radius: 14px;
      padding: 0.8rem 0.85rem;
      display: grid;
      gap: 0.38rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .store-card--modal {
      cursor: pointer;
    }

    .store-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(5, 20, 42, 0.35);
    }

    .store-name {
      margin: 0;
      color: var(--pantone-pink-2337);
      font-family: var(--display-font);
      text-transform: uppercase;
      line-height: 1;
      font-size: 1.3rem;
      letter-spacing: .01em;
    }

    .store-address { margin: 0; font-size: 0.95rem; line-height: 1.3; color: var(--pink-soft); }

    .store-pill {
      justify-self: start;
      margin-top: .25rem;
      border-radius: 999px;
      background: rgba(127, 218, 198, 0.95);
      color: var(--pantone-green-7724);
      padding: 0.2rem 0.65rem;
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .06em;
      font-weight: 700;
    }

    .map-section > * {
      max-width: none;
      width: 100%;
    }

    .map-section .title-line {
      color: var(--yellow);
      display: block;
      width: 100%;
      text-align: center;
      margin: 0 auto 1.4rem;
    }

    .section-peach {
      background: #FAA69E;
    }

    .section-peach .title-line {
      color: #DBE9B6;
    }

    .mapbox-panel {
      width: min(96vw, 1800px);
      max-width: none;
      margin: 24px auto 1rem;
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 0.85rem;
    }

    .mapbox-index {
      background: rgba(11, 55, 104, 0.88);
      color: var(--paper);
      border-radius: 12px;
      padding: 0.75rem;
      min-height: 500px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mapbox-index-title {
      margin: 0 0 0.45rem;
      font-family: var(--display-font);
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: var(--pink-soft);
      font-size: 1.35rem;
      line-height: 1;
    }

    .mapbox-index-status {
      font-size: 0.8rem;
      opacity: 0.88;
      margin-bottom: 0.6rem;
    }

    .mapbox-store-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.38rem;
      max-height: 350px;
      overflow: auto;
    }

    .mapbox-store-item {
      width: 100%;
      border: 0;
      border-radius: 10px;
      padding: 0.42rem 0.5rem;
      text-align: left;
      background: rgba(255, 255, 255, 0.1);
      color: var(--paper);
      cursor: pointer;
      font-size: 0.82rem;
      line-height: 1.25;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .mapbox-group-title {
      margin: 0.35rem 0 0.1rem;
      font-family: var(--display-font);
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: #fbe3ef;
      font-size: 0.78rem;
      opacity: 0.95;
    }

    .mapbox-store-item--store strong { color: #fbe3ef; }
    .mapbox-store-item--event strong { color: #ffd4de; }
    .mapbox-store-item--hop strong { color: #c9f3df; }

    .mapbox-store-item:hover,
    .mapbox-store-item.is-active {
      background: rgba(255, 215, 234, 0.26);
      transform: translateX(2px);
    }

    .mapbox-store-item strong {
      display: block;
      font-size: 0.86rem;
      color: var(--pink-soft);
    }

    .mapbox-popup-actions {
      margin-top: 0.5rem;
      display: flex;
      justify-content: flex-start;
    }

    .mapbox-action-btn {
      border: 0;
      border-radius: 999px;
      background: var(--pantone-yellow-7507);
      color: var(--pantone-blue-285);
      padding: 0.22rem 0.7rem;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 700;
      cursor: pointer;
      transition: filter 0.2s ease;
    }

    .mapbox-action-btn:hover,
    .mapbox-action-btn:focus {
      filter: brightness(0.95);
    }

    .mapbox-popup-action {
      margin: 0.45rem 0 0;
      font-size: 0.82rem;
      line-height: 1.35;
      color: #1f2a2f;
    }

    .mapbox-canvas-wrap {
      border-radius: 12px;
      overflow: hidden;
      border: 2px solid rgba(11, 55, 104, 0.28);
      min-height: 500px;
    }

    .mapbox-canvas {
      width: 100%;
      min-height: 500px;
    }

    .mapbox-number-marker {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--pantone-red-2346);
      color: var(--pink-soft);
      border: 2px solid var(--pink-soft);
      display: grid;
      place-items: center;
      font-size: 0.78rem;
      font-weight: 700;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
    }

    .mapbox-number-marker--event {
      background: #ebbcaa;
      color: #0f2a3d;
      border-color: #df6163;
    }

    .mapbox-number-marker--hop {
      background: #149c75;
      color: #f7f0df;
      border-color: #afd6b9;
    }

    .map-actions {
      margin-top: 0.35rem;
      text-align: center;
    }

    .static-map-wrap {
      width: 100%;
      max-width: 1800px;
      margin: 24px auto 1rem;
      border-radius: 12px;
      overflow: hidden;
      border: 2px solid rgba(11, 55, 104, 0.28);
      background: rgba(255, 255, 255, 0.35);
    }

    .static-map-image {
      display: block;
      width: 100%;
      height: auto;
    }

    .map-download-btn {
      display: inline-block;
      border: 0;
      border-radius: 999px;
      background: var(--pantone-yellow-7507);
      color: var(--pantone-blue-285);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 700;
      font-size: 0.82rem;
      padding: 0.65rem 1rem;
      border: 1px solid rgba(0, 113, 188, 0.35);
    }

    .district-text {
      max-width: 96ch;
      margin: 0 auto 1.35rem;
      text-align: center;
      color: var(--yellow);
      font-size: clamp(1.05rem, 1.8vw, 1.3rem);
      line-height: 1.4;
    }

    .district-section .title-line {
      display: block;
      width: 100%;
      text-align: center;
      margin: 0 auto 1.4rem;
    }

    .district-section > * {
      max-width: none;
      width: 100%;
    }

    .region-moods-band > * {
      max-width: none;
      width: 100%;
    }

    .district-row {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 0.9rem;
      width: 100%;
    }

    .district-card { text-align: center; }
    .district-link {
      display: block;
      color: inherit;
      text-decoration: none;
    }
    .district-card {
      transition: transform 0.25s ease;
    }
    .district-card:hover {
      transform: translateY(-3px);
    }
    .district-thumb {
      width: 100%;
      aspect-ratio: 1.45 / 1;
      border-radius: 26px;
      overflow: hidden;
      border: 2px solid rgba(255,255,255,.35);
      margin-bottom: .5rem;
      background: var(--paper);
    }

    .district-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .district-name {
      margin: 0;
      font-family: "Oswald", sans-serif;
      text-transform: uppercase;
      font-size: .82rem;
      color: var(--sun);
      letter-spacing: .04em;
    }

    .trip-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: center; }
    .trip-wrap h2 { font-family: "Anton", "Arial Narrow", sans-serif; font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .6rem; }
    .trip-wrap p { max-width: 40ch; margin: 0 0 .5rem; line-height: 1.35; }
    .trip-map {
      background: var(--mint);
      border: 4px solid rgba(255,255,255,.25);
      min-height: 320px;
      display: grid;
      place-items: center;
      text-transform: uppercase;
      color: var(--deep-blue);
      font-weight: 700;
      text-align: center;
      padding: 1rem;
    }

    .partners-section {
      background: #ffffff;
    }

    .partners-section > * {
      max-width: 1360px;
    }

    .partners-section .title-line {
      display: block;
      width: 100%;
      text-align: center;
      margin: 0 auto 1.4rem;
      color: var(--blue);
    }

    .qpark-section > * {
      max-width: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }

    .qpark-header {
      display: grid;
      gap: 1rem;
      align-items: center;
      justify-items: center;
      text-align: center;
    }

    .qpark-logo {
      width: min(220px, 60vw);
      height: auto;
      display: block;
    }

    .qpark-title {
      color: var(--blue);
      margin-bottom: 0;
    }

    .qpark-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.2rem;
      margin-top: 2.2rem;
    }

    .qpark-subtitle {
      margin: 0 0 0.6rem;
      font-family: var(--display-font);
      text-transform: uppercase;
      font-size: clamp(1.1rem, 2.4vw, 1.6rem);
      color: var(--coral);
      letter-spacing: 0.02em;
    }

    .qpark-copy p {
      margin: 0;
      color: var(--ink);
      line-height: 1.55;
      font-size: 1rem;
    }

    .qpark-copy {
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 16px;
      padding: 1.2rem 1.4rem;
      box-shadow: 0 12px 28px rgba(8, 18, 35, 0.08);
    }

    .qpark-actions {
      margin-top: 1.8rem;
      text-align: center;
    }

    .qpark-cta {
      display: inline-block;
      border-radius: 999px;
      background: var(--blue);
      color: var(--yellow);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 0.8rem 1.4rem;
      border: 1px solid rgba(0, 113, 188, 0.35);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .qpark-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }

    .partners-grid {
      margin-top: 1.1rem;
      display: flex;
      flex-wrap: nowrap;
      gap: 0.9rem;
      align-items: stretch;
      width: 100%;
      overflow-x: auto;
      padding-bottom: 0.2rem;
    }

    .partner-card {
      flex: 1 1 0;
      min-width: 140px;
      background: rgba(255, 255, 255, 0.45);
      border: 2px solid rgba(0, 0, 0, 0.08);
      border-radius: 14px;
      min-height: 130px;
      display: grid;
      place-items: center;
      padding: 0.85rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .partner-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .partner-logo {
      width: 100%;
      height: 74px;
      object-fit: contain;
      display: block;
    }

    .follow-section .title-line {
      display: block;
      width: 100%;
      text-align: center;
      margin: 0 auto 1.4rem;
      color: var(--paper);
    }

    .follow-title {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
    }

    .follow-title-icon {
      width: 0.9em;
      height: 0.9em;
      fill: currentColor;
      transform: translateY(0.02em);
    }

    .follow-section > * {
      max-width: none;
      width: 100%;
    }

    .follow-strip {
      display: grid;
      grid-template-columns: repeat(6, minmax(0,1fr));
      gap: .45rem;
      margin-top: .75rem;
      width: 100%;
    }

    .follow-link {
      display: block;
      text-decoration: none;
      color: inherit;
      transition: transform 0.22s ease;
    }

    .follow-link:hover {
      transform: translateY(-3px);
    }

    .follow-thumb {
      aspect-ratio: 1/1;
      border: 1px solid rgba(0,0,0,.14);
      border-radius: 3px;
      overflow: hidden;
      background: var(--paper);
    }

    .follow-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .contact-wrap { max-width: 980px; margin: 0 auto; }
    .contact-title {
      margin: 0 0 1rem;
      color: var(--coral);
      font-family: "Anton", "Arial Narrow", sans-serif;
      text-transform: uppercase;
      font-size: clamp(2.3rem, 4.2vw, 3.8rem);
      line-height: 1;
      text-align: center;
      width: 100%;
    }
    .contact-box {
      background: transparent;
      min-height: 190px;
      border-radius: 0;
      display: grid;
      place-items: center;
      color: var(--blue);
      text-align: center;
      line-height: 1.6;
      transition: none;
    }

    .asd-modal {
      position: fixed;
      inset: 0;
      background: rgba(8,14,30,.62);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1200;
      padding: 1rem;
    }
    .asd-modal.is-open { display: flex; }
    .asd-modal-dialog {
      width: min(720px, 100%);
      background: var(--paper);
      border-radius: 20px;
      padding: 1.1rem 1.1rem 1rem;
      box-shadow: 0 20px 60px rgba(0,0,0,.3);
      border: 3px solid var(--deep-blue);
    }
    .asd-modal-top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: .65rem; }
    .asd-modal-title {
      margin: 0;
      font-family: var(--display-font);
      text-transform: uppercase;
      color: var(--blue);
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      line-height: 1;
    }
    .asd-modal-close {
      border: 0;
      background: var(--blue);
      color: var(--paper);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      font-size: 1.3rem;
      line-height: 1;
      cursor: pointer;
      font-weight: 700;
    }
    .asd-modal-body { font-size: 1rem; line-height: 1.5; color: var(--ink); }
    .asd-modal-body p { margin: 0 0 .75rem; }

    @media (max-width: 991.98px) {
      .activity-grid,
      .district-row,
      .partners-grid,
      .follow-strip,
      .stores-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .qpark-content { grid-template-columns: 1fr; }

      .trip-wrap { grid-template-columns: 1fr; }
      .activity-card, .activity-image { min-height: 320px; }
      .mapbox-panel { grid-template-columns: 1fr; }
      .mapbox-index { min-height: 0; }
      .mapbox-store-list { max-height: 220px; }
    }

    @media (min-width: 1400px) {
      .mapbox-panel { grid-template-columns: 320px minmax(0, 1fr); }
      .mapbox-index,
      .mapbox-canvas-wrap,
      .mapbox-canvas { min-height: 560px; }
    }

    @media (max-width: 575.98px) {
      .asd-section { padding: 56px 0.9rem; }
      .asd-section.hero { padding: 0; }
      .activity-grid,
      .stores-grid { grid-template-columns: 1fr; }
      .district-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .follow-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .activity-card, .activity-image { min-height: 300px; }
      .card-label { font-size: clamp(1.5rem, 7vw, 2rem); }
      .back-to-top { right: 0.75rem; bottom: 0.75rem; }
      .site-nav-inner {
        padding: 0.55rem 0.8rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
      }
      .site-brand { font-size: 0.9rem; }
      .site-menu {
        width: 100%;
        justify-content: center;
      }
      .site-menu a { font-size: 0.72rem; padding: 0.28rem 0.52rem; }
    }

    .contact-links { display: grid; gap: 0.6rem; font-size: clamp(1rem, 1.8vw, 1.15rem); }
    .contact-links a { color: var(--blue); text-decoration: none; font-weight: 700; }
    .contact-links a:hover { color: #005f9e; text-decoration: underline; }
    .social-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      color: var(--blue);
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid rgba(0, 113, 188, 0.35);
    }
    .social-link:hover { background: rgba(255, 255, 255, 0.8); }
    .social-icon {
      width: 24px;
      height: 24px;
      display: inline-block;
      fill: currentColor;
    }

    .back-to-top {
      position: fixed;
      right: 1rem;
      bottom: 1rem;
      width: 46px;
      height: 46px;
      border: 0;
      border-radius: 50%;
      background: var(--blue);
      color: var(--yellow);
      font-size: 1.35rem;
      font-weight: 700;
      line-height: 1;
      display: grid;
      place-items: center;
      cursor: pointer;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      z-index: 1400;
    }

    .back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top:hover {
      transform: translateY(-2px);
    }

    .reveal-up {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.65s ease, transform 0.65s ease;
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }

    .reveal-up.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .store-card,
      .district-card,
      .partner-card,
      .follow-link,
      .contact-box,
      .hero-image,
      .back-to-top {
        transition: none;
        transform: none;
      }
    }

    .gallery-section {
      position: relative;
    }

    .gallery-wrap {
      width: min(92vw, 1400px);
      margin: 0 auto;
    }

    .gallery-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .gallery-count {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 700;
      color: rgba(12, 34, 54, 0.7);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 14px;
    }

    .gallery-item {
      border: 0;
      padding: 0;
      border-radius: 16px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.5);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
    }

    .gallery-item:hover,
    .gallery-item:focus {
      transform: translateY(-4px);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
      outline: none;
    }

    .gallery-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(10, 20, 28, 0.75);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      z-index: 2000;
    }

    .lightbox.is-open {
      display: flex;
    }

    .lightbox-dialog {
      width: min(92vw, 1100px);
      background: #f7f0df;
      border-radius: 18px;
      padding: 18px;
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    }

    .lightbox-close {
      border: 0;
      border-radius: 999px;
      background: var(--pantone-yellow-7507);
      color: var(--pantone-blue-285);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 0.72rem;
      padding: 0.32rem 0.9rem;
      float: right;
      cursor: pointer;
    }

    .lightbox-image {
      width: 100%;
      max-height: 70vh;
      object-fit: contain;
      display: block;
      margin: 0.75rem 0 0.5rem;
    }

    .lightbox-caption {
      margin: 0;
      font-size: 0.9rem;
      color: rgba(12, 34, 54, 0.7);
      text-align: center;
    }

    .no-scroll {
      overflow: hidden;
    }


    .gallery-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.8rem;
    }

    .gallery-pagination--top {
      margin: 0.9rem 0 1.2rem;
    }

    .gallery-pagination--bottom {
      margin: 1.2rem 0 0;
    }

    .gallery-page-btn {
      border: 0;
      border-radius: 999px;
      background: var(--pantone-yellow-7507);
      color: var(--pantone-blue-285);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 0.72rem;
      padding: 0.35rem 0.9rem;
      cursor: pointer;
      transition: filter 0.2s ease;
    }

    .gallery-page-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .gallery-page-status {
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(12, 34, 54, 0.7);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      border: 0;
      border-radius: 999px;
      background: rgba(12, 34, 54, 0.85);
      color: #f7f0df;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 0.7rem;
      padding: 0.35rem 0.8rem;
      cursor: pointer;
    }

    .lightbox-prev {
      left: 12px;
    }

    .lightbox-next {
      right: 12px;
    }

    .lightbox-dialog {
      position: relative;
    }









