﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

    :root {
      --shell-width: 1440px;
      --bg-page: #dddddd;
      --bg-card: #ffffff;
      --bg-deep: #024b74;
      --bg-soft: #f7f8fa;
      --line: #e9edf1;
      --text: #2d3742;
      --text-soft: #7d8792;
      --accent: #09bef4;
      --accent-hover: #02abd9;
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 18px;
      --shadow-card: 0 18px 44px rgba(7, 43, 69, 0.08);
      --shadow-soft: 0 10px 24px rgba(7, 43, 69, 0.05);
      --font-main: "Manrope", "Montserrat", "Segoe UI", sans-serif;
      --font-display: "Montserrat", "Manrope", "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--bg-page);
      color: var(--text);
      font-family: var(--font-main);
      overflow-x: hidden;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body.is-menu-open { overflow: hidden; }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(2, 75, 116, 0.24);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease;
      z-index: 40;
    }

    body.is-menu-open::before {
      opacity: 1;
      pointer-events: auto;
    }

    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    img { display: block; max-width: 100%; }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .screen { display: none; }
    .screen.is-active { display: block; }

    .page-head { background: var(--bg-deep); }
    .page-head__frame {
      width: min(calc(100% - 48px), var(--shell-width));
      margin: 0 auto;
      min-height: 510px;
      padding: 24px 0 50px;
      display: flex;
      flex-direction: column;
    }

    .page-head--home .page-head__frame {
      min-height: auto;
      padding-bottom: 0;
      padding-top: 8px;
    }

    .page-head__title {
      margin-top: auto;
      color: #ffffff;
      font-size: 41px;
      line-height: 1.1;
      font-weight: 700;
      letter-spacing: -0.02em;
      font-family: var(--font-display);
    }

    .topbar {
      position: relative;
      min-height: 74px;
      padding: 0 28px 0 34px;
      background: #ffffff;
      border-radius: 999px;
      display: flex;
      align-items: center;
      gap: 40px;
      box-shadow: 0 12px 28px rgba(2, 75, 116, 0.12);
      z-index: 20;
    }

    .topbar__logo {
      position: relative;
      z-index: 45;
    }

    .topbar__logo img { width: 112px; height: auto; }

    .topbar__nav {
      flex: 1 1 auto;
      min-width: 0;
    }

    .topbar__menu {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 42px;
    }

    .topbar__menu a {
      font-size: 15px;
      font-weight: 500;
      color: #24313d;
      white-space: nowrap;
      transition: color 0.2s ease;
      font-family: var(--font-display);
    }

    .topbar__menu a.is-current,
    .topbar__menu a:hover { color: var(--bg-deep); }

    .topbar__actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: auto;
      position: relative;
      z-index: 45;
    }

    .topbar__search {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 0;
      background: transparent;
      padding: 0;
      cursor: pointer;
    }

    .topbar__search img { width: 24px; height: 24px; object-fit: contain; }

    .topbar__toggle {
      display: none;
      width: 32px;
      height: 32px;
      border: 0;
      background: transparent;
      padding: 0;
      cursor: pointer;
      place-items: center;
      border-radius: 50%;
      position: relative;
    }

    .topbar__toggle span {
      display: block;
      width: 18px;
      height: 2px;
      position: absolute;
      top: 50%;
      left: 50%;
      background: var(--bg-deep);
      border-radius: 999px;
      transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
    }

    .topbar__toggle span:nth-child(1) { transform: translate(-50%, -6px); }
    .topbar__toggle span:nth-child(2) { transform: translate(-50%, -1px); }
    .topbar__toggle span:nth-child(3) { transform: translate(-50%, 4px); }

    .home-hero {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-top: 6px;
    }

    .home-hero img { width: 100%; height: auto; }

    .page-main {
      width: min(calc(100% - 48px), var(--shell-width));
      margin: 0 auto;
      padding: 34px 0 80px;
    }

    .page-main--home { padding-top: 24px; }
    .section-stack > * + * { margin-top: 32px; }

    .panel {
      background: var(--bg-card);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
      padding: 40px;
    }

    .panel--dark {
      background: var(--bg-deep);
      color: #ffffff;
    }

    .section-heading {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-heading--light { color: #ffffff; }

    .eyebrow {
      display: block;
      margin-bottom: 8px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--text-soft);
    }

    .section-heading--light .eyebrow { color: rgba(255, 255, 255, 0.75); }

    .section-title {
      margin: 0;
      font-size: 40px;
      line-height: 1.06;
      font-weight: 700;
      letter-spacing: -0.03em;
      font-family: var(--font-display);
    }

    .section-title--sm { font-size: 32px; }

    .section-copy,
    .page-copy,
    .lead-copy p,
    .rich-text p,
    .detail-copy,
    .info-list,
    .article-credit {
      font-size: 17px;
      line-height: 1.62;
      font-weight: 500;
      color: #46505b;
    }

    .page-copy,
    .lead-copy {
      max-width: 1380px;
      margin-bottom: 34px;
    }

    .lead-copy p { margin: 0 0 14px; }

    .pill-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 24px;
      border: 0;
      border-radius: 999px;
      background: var(--accent);
      color: #ffffff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
      white-space: nowrap;
      font-family: var(--font-display);
    }

    .pill-button:hover {
      background: var(--accent-hover);
      transform: translateY(-1px);
    }

    .pill-button--light { background: #ffffff; color: var(--bg-deep); }
    .pill-button--light:hover { background: #f4f7fb; }

    .filter-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 336px;
      align-items: center;
      gap: 20px;
      margin-bottom: 26px;
    }

    .filter-row--stores { margin-bottom: 22px; }

    .filter-row > :nth-child(3) { display: none; }

    .field { position: relative; }

    .field input,
    .field select {
      width: 100%;
      height: 52px;
      padding: 0 50px 0 24px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #ffffff;
      color: #46505b;
      font-size: 16px;
      font-weight: 500;
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
      outline: none;
      appearance: none;
    }

    .field input::placeholder { color: #8994a0; }

    .field__icon {
      position: absolute;
      inset: 0 18px 0 auto;
      width: 16px;
      margin: auto 0;
      opacity: 0.7;
      pointer-events: none;
    }

    .field__arrow {
      position: absolute;
      right: 20px;
      top: 50%;
      width: 10px;
      height: 10px;
      border-right: 2px solid #95a0aa;
      border-bottom: 2px solid #95a0aa;
      transform: translateY(-65%) rotate(45deg);
      pointer-events: none;
    }

    .store-grid,
    .news-grid,
    .service-grid,
    .restaurant-grid,
    .related-grid,
    .service-mini-grid {
      display: grid;
      gap: 22px;
    }

    .store-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .store-card,
    .news-card,
    .service-card,
    .home-service-card,
    .mini-service-card,
    .movie-card,
    .event-card,
    .feature-card {
      display: flex;
      flex-direction: column;
      color: inherit;
    }

    .store-card__media,
    .news-card__media,
    .service-card__media,
    .home-service-card__media,
    .mini-service-card__media,
    .movie-card__media,
    .event-card__media {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-md);
      background: #f0f2f4;
    }

    .store-card__media { aspect-ratio: 429 / 520; }

    .store-card__media img,
    .news-card__media img,
    .service-card__media img,
    .home-service-card__media img,
    .mini-service-card__media img,
    .movie-card__media img,
    .event-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .store-card__media--blank { background: #eeeeef; }
    .store-card__media--blank::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      box-shadow: inset 0 0 0 1px rgba(45, 55, 66, 0.04);
    }

    .store-card__media--logo {
      display: grid;
      place-items: center;
      padding: 26px;
      background: linear-gradient(180deg, #f6f8fb 0%, #eef2f6 100%);
    }

    .store-card__logo-fallback {
      width: min(72%, 220px);
      height: auto;
      object-fit: contain;
    }

    .store-card__photo-fallback {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .store-card__content,
    .news-card__content,
    .movie-card__content,
    .event-card__content { padding-top: 12px; }

    .store-card__name {
      margin: 0;
      font-size: 21px;
      line-height: 1.2;
      font-weight: 700;
    }

    .store-card__meta {
      margin-top: 6px;
      color: var(--text-soft);
      font-size: 12px;
    }

    .store-card__overlay {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 14px 28px rgba(7, 43, 69, 0.12);
    }

    .tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 0 16px;
      border-radius: 999px;
      background: var(--accent);
      color: #ffffff;
      font-size: 11px;
      font-weight: 700;
    }

    .home-strip {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 28px;
      align-items: center;
      padding: 40px;
      background: var(--bg-deep);
      border-radius: var(--radius-xl);
      color: #ffffff;
      box-shadow: var(--shadow-card);
    }

    .home-strip__copy h2 {
      margin: 0 0 14px;
      font-size: 38px;
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .home-strip__copy p {
      margin: 0 0 22px;
      max-width: 290px;
      font-size: 14px;
      line-height: 1.72;
      color: rgba(255, 255, 255, 0.8);
    }

    .poster-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .movie-card__media {
      aspect-ratio: 322 / 484;
      box-shadow: var(--shadow-soft);
    }

    .movie-card__feature {
      position: absolute;
      inset: auto 14px 14px 14px;
      padding: 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.95);
      color: var(--text);
      box-shadow: 0 14px 30px rgba(7, 43, 69, 0.18);
    }

    .movie-card__feature h3 {
      margin: 0 0 4px;
      font-size: 18px;
      line-height: 1.15;
    }

    .movie-card__feature p {
      margin: 0 0 10px;
      font-size: 11px;
      color: var(--text-soft);
    }

    .movie-card__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 30px;
      min-height: 30px;
      padding: 0 8px;
      border-radius: 10px;
      background: #d0322a;
      color: #ffffff;
      font-size: 13px;
      font-weight: 800;
    }

    .restaurant-grid,
    .news-grid,
    .service-grid,
    .related-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .restaurant-card__media {
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: var(--radius-md);
      background: #f1f3f5;
      aspect-ratio: 628 / 603;
    }

    .restaurant-card__media--contain {
      padding: 28px;
      background: #ffffff;
    }

    .restaurant-card__art {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .restaurant-card__art--contain {
      object-fit: contain;
    }

    .restaurant-card__title {
      margin: 12px 0 0;
      font-size: 18px;
      font-weight: 700;
    }

    .restaurant-card--category .restaurant-card__title {
      font-size: 15px;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      text-align: center;
    }

    .event-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .event-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 12px;
      color: var(--text);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
    }

    .event-card__media {
      aspect-ratio: 402 / 334;
      border-radius: 16px;
    }

    .event-card__body {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 16px;
      align-items: center;
      padding: 14px 4px 6px;
    }

    .date-badge {
      display: grid;
      place-items: center;
      min-height: 58px;
      border-radius: 14px;
      background: #ffffff;
      color: var(--bg-deep);
      box-shadow: inset 0 0 0 1px rgba(2, 75, 116, 0.1);
      text-align: center;
    }

    .date-badge strong {
      display: block;
      font-size: 22px;
      line-height: 1;
      font-weight: 800;
    }

    .date-badge span {
      display: block;
      margin-top: 2px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .event-card__title {
      margin: 0 0 4px;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.2;
    }

    .event-card__subtitle {
      margin: 0;
      font-size: 12px;
      color: var(--text-soft);
    }

    .news-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      padding: 0 0 18px;
    }

    .news-card__media {
      aspect-ratio: 452 / 255;
      border-radius: 0;
    }

    .news-card__content {
      padding: 18px 20px 0;
      display: flex;
      flex: 1 1 auto;
      flex-direction: column;
      gap: 10px;
    }

    .news-card__date {
      font-size: 12px;
      color: #9099a2;
      font-weight: 600;
    }

    .news-card__title {
      margin: 0;
      font-size: 18px;
      line-height: 1.35;
      font-weight: 700;
    }

    .news-card__link {
      margin-top: auto;
      font-size: 12px;
      font-weight: 700;
      color: var(--accent);
    }

    .service-highlight {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 22px;
      align-items: start;
    }

    .service-banner {
      height: 100%;
      padding: 32px 28px;
      background: var(--bg-deep);
      border-radius: var(--radius-lg);
      color: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 26px;
    }

    .service-banner__brand {
      font-size: 30px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .service-banner__brand span {
      display: block;
      font-size: 15px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }

    .service-banner__brand em {
      display: block;
      margin-top: 6px;
      font-size: 38px;
      font-style: italic;
      font-weight: 600;
    }

    .service-banner p {
      margin: 0;
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.82);
    }

    .service-grid--large { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .service-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 12px;
      box-shadow: var(--shadow-soft);
    }

    .service-card__media { aspect-ratio: 247 / 333; }

    .service-card__title,
    .mini-service-card__title {
      margin: 12px 4px 4px;
      font-size: 15px;
      line-height: 1.3;
      font-weight: 700;
    }

    .service-hero-banner {
      display: block;
      overflow: hidden;
      border-radius: 24px;
      background: #f1f3f5;
      box-shadow: var(--shadow-soft);
    }

    .service-hero-banner img {
      width: 100%;
      height: auto;
      display: block;
    }

    .home-services-showcase {
      position: relative;
      padding: 22px 24px 4px;
      isolation: isolate;
    }

    .home-services-showcase__band {
      position: absolute;
      inset: 0 0 72px;
      background: var(--bg-deep);
      border-radius: 34px;
      box-shadow: var(--shadow-card);
      z-index: 0;
    }

    .home-services-showcase__content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 430px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      min-height: 410px;
    }

    .home-services-showcase__brand {
      padding: 32px 0 0 26px;
    }

    .home-services-showcase__brand img {
      width: 100%;
      max-width: 370px;
      height: 304px;
      object-fit: cover;
      object-position: left center;
      border-radius: 26px;
    }

    .home-services-showcase__cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      padding: 66px 26px 0 0;
    }

    .home-service-card {
      gap: 16px;
      color: #0f1722;
    }

    .home-service-card__frame {
      position: relative;
      padding: 14px;
      border-radius: 30px;
      background: #ffffff;
      box-shadow: 0 18px 34px rgba(7, 43, 69, 0.12);
    }

    .home-service-card__media {
      aspect-ratio: 257 / 331;
      border-radius: 24px;
      background: #f3efe1;
    }

    .home-service-card__title {
      margin: 0 10px;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #121821;
    }

    .home-service-card__cta {
      position: absolute;
      left: 50%;
      bottom: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 0 22px;
      border-radius: 999px;
      background: var(--bg-deep);
      color: #ffffff;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.01em;
      opacity: 0;
      transform: translate(-50%, 8px);
      transition: opacity 0.22s ease, transform 0.22s ease;
      pointer-events: none;
    }

    .home-service-card__cta::after {
      content: "";
      width: 7px;
      height: 7px;
      border-top: 2px solid #ffffff;
      border-right: 2px solid #ffffff;
      transform: rotate(45deg);
    }

    .home-service-card:hover .home-service-card__cta,
    .home-service-card:focus-visible .home-service-card__cta,
    .home-service-card.is-cta-visible .home-service-card__cta {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    .wide-photo {
      overflow: hidden;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
    }

    .about-copy-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 36px;
      margin-bottom: 30px;
    }

    .about-copy-grid h2 {
      margin: 0 0 14px;
      font-size: 24px;
      font-weight: 700;
    }

    .tech-wrapper {
      padding: 28px;
      background: var(--bg-deep);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
    }

    .tech-title {
      margin: 0 0 18px;
      font-size: 24px;
      color: #ffffff;
    }

    .tech-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .feature-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 24px 22px;
      box-shadow: var(--shadow-soft);
    }

    .feature-card img {
      width: 54px;
      height: auto;
      margin-bottom: 14px;
    }

    .feature-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 700;
    }

    .feature-card p {
      margin: 0;
      font-size: 13px;
      line-height: 1.7;
      color: var(--text-soft);
    }

    .map-card {
      margin-top: 16px;
      overflow: hidden;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
    }

    .month-tabs {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 8px;
      margin: 18px 0 24px;
    }

    .month-tabs button {
      min-height: 40px;
      border: 0;
      border-radius: 999px;
      background: #ffffff;
      color: #7a858f;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: var(--shadow-soft);
    }

    .month-tabs button.is-active {
      background: var(--accent);
      color: #ffffff;
    }

    .event-main {
      background: #ffffff;
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: var(--shadow-card);
    }

    .event-main__media {
      overflow: hidden;
      border-radius: 20px;
      margin-bottom: 18px;
    }

    .event-main__layout {
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 20px;
      align-items: start;
    }

    .event-main__body h2,
    .detail-title {
      margin: 0 0 8px;
      font-size: 28px;
      line-height: 1.1;
      font-weight: 700;
    }

    .event-main__subtitle,
    .detail-subtitle {
      margin: 0 0 16px;
      font-size: 14px;
      color: var(--text-soft);
    }

    .event-main__body p,
    .rich-text p,
    .detail-copy,
    .info-list { margin: 0 0 14px; }

    .event-band {
      padding: 26px;
      background: var(--bg-deep);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
    }

    .event-band h2 { margin: 0 0 18px; color: #ffffff; font-size: 28px; line-height: 1.15; }

    .article-panel { max-width: 1270px; margin: 0 auto 32px; }
    .article-meta {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 10px;
      color: #a1a8af;
      font-size: 12px;
      font-weight: 600;
    }

    .article-share { color: #a1a8af; font-size: 18px; }
    .article-credit { margin-top: -6px; }
    .article-media { margin: 20px 0 26px; }

    .article-media img {
      width: 100%;
      border-radius: 18px;
      box-shadow: var(--shadow-soft);
    }

    .article-media figcaption {
      margin-top: 10px;
      font-size: 11px;
      color: #97a0a9;
      text-align: right;
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      color: #6d7780;
      font-size: 13px;
      font-weight: 600;
    }

    .back-link::before { content: "â€¹"; font-size: 20px; line-height: 1; }

    .store-detail {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 36px;
      align-items: start;
    }

    .store-logo {
      width: 146px;
      padding: 20px 16px;
      background: #ffffff;
      border-radius: 18px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .store-logo img { width: 100%; height: auto; }

    .store-detail__identity h2 {
      margin: 18px 0 10px;
      font-size: 29px;
      line-height: 1.1;
    }

    .store-detail__list {
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 18px;
    }

    .store-detail__list li strong {
      display: block;
      margin-bottom: 4px;
      font-size: 12px;
      color: #66707a;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .store-detail__photo {
      overflow: hidden;
      border-radius: 20px;
      box-shadow: var(--shadow-soft);
    }

    .related-heading {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin: 34px 0 18px;
    }

    .related-heading h2,
    .panel h2.panel-title {
      margin: 0;
      font-size: 28px;
      line-height: 1.15;
    }

    .arrow-pair {
      display: inline-flex;
      gap: 10px;
    }

    .arrow-pair button {
      width: 32px;
      height: 32px;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      color: inherit;
      font-size: 18px;
      cursor: pointer;
    }

    .service-layout {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 28px;
      align-items: start;
    }

    .service-sidebar {
      padding: 32px 24px;
      background: var(--bg-deep);
      border-radius: var(--radius-xl);
      color: #ffffff;
      box-shadow: var(--shadow-soft);
    }

    .service-sidebar .field { margin: 22px 0 20px; }

    .service-sidebar .field select {
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #ffffff;
    }

    .service-sidebar .field__arrow { border-color: rgba(255, 255, 255, 0.75); }

    .service-sidebar__contact {
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      font-size: 13px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.82);
    }

    .service-sidebar__contact strong { color: #ffffff; }
    .service-detail__media {
      overflow: hidden;
      border-radius: 24px;
      box-shadow: var(--shadow-soft);
      margin: 18px 0 24px;
    }

    .service-mini-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .mini-service-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 10px;
      box-shadow: var(--shadow-soft);
    }

    .mini-service-card__media {
      aspect-ratio: 247 / 333;
      border-radius: 14px;
    }

    .load-more {
      margin-top: 26px;
      text-align: center;
    }

    .site-footer {
      background: var(--bg-deep);
      color: #ffffff;
      margin-top: 12px;
    }

    .site-footer__inner {
      width: min(calc(100% - 48px), var(--shell-width));
      margin: 0 auto;
      padding: 48px 0 42px;
    }

    .footer-hours {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px 30px;
      font-size: 12px;
      line-height: 1.72;
    }

    .footer-hours__title {
      margin: 0 0 12px;
      font-size: 13px;
      font-weight: 700;
    }

    .footer-hours article strong {
      display: block;
      margin-bottom: 4px;
      font-size: 12px;
      font-weight: 700;
    }

    .footer-divider {
      height: 1px;
      margin: 28px 0 24px;
      background: rgba(255, 255, 255, 0.16);
    }

    .footer-bottom {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 24px;
      font-size: 12px;
      line-height: 1.72;
    }

    .footer-bottom__title {
      margin: 0 0 8px;
      font-size: 13px;
      font-weight: 700;
    }

    .socials {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .socials img {
      width: 20px;
      height: 20px;
      display: block;
      flex: 0 0 20px;
      object-fit: contain;
      filter: brightness(0) saturate(100%) invert(100%);
    }

    .footer-copy {
      margin-top: 20px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
    }

    @media (max-width: 1180px) {
      .topbar { gap: 18px; }
      .section-title,
      .home-strip__copy h2 { font-size: 32px; }
      .store-detail,
      .service-layout,
      .service-highlight { grid-template-columns: 1fr; }
      .home-services-showcase__content { grid-template-columns: 1fr; }
      .home-services-showcase__brand {
        padding: 30px 26px 0;
      }
      .home-services-showcase__cards {
        padding: 0 26px 0;
      }
      .tech-grid,
      .footer-hours,
      .footer-bottom,
      .event-grid,
      .news-grid,
      .restaurant-grid,
      .related-grid,
      .service-grid--large { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .poster-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .service-mini-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

    @media (max-width: 1100px) {
      .topbar {
        min-height: 84px;
        padding: 14px 16px;
        gap: 14px;
        align-items: center;
      }
      .topbar__nav {
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        right: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.22s ease, transform 0.22s ease;
        z-index: 30;
      }
      .topbar__menu {
        width: 100%;
        margin: 0;
        padding: 8px 22px 10px;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        border-radius: 32px;
        border: 1px solid rgba(2, 75, 116, 0.06);
        box-shadow: 0 26px 56px rgba(7, 43, 69, 0.18);
      }
      .topbar.is-menu-open {
        z-index: 60;
      }
      .topbar.is-menu-open .topbar__nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }
      .topbar__menu a {
        display: flex;
        align-items: center;
        min-height: 58px;
        padding: 0 2px;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: -0.02em;
        color: var(--text);
        border-bottom: 1px solid var(--line);
      }
      .topbar__menu a:last-child { border-bottom: 0; }
      .topbar__menu a.is-current { color: var(--bg-deep); }
      .topbar__search { display: none; }
      .topbar__toggle {
        display: grid;
        width: 52px;
        height: 52px;
        background: var(--bg-soft);
        border: 1px solid rgba(2, 75, 116, 0.08);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        flex: 0 0 52px;
      }
      .topbar__toggle span { width: 20px; }
      .topbar.is-menu-open .topbar__toggle {
        background: var(--bg-deep);
        border-color: transparent;
      }
      .topbar.is-menu-open .topbar__toggle span { background: #ffffff; }
      .topbar.is-menu-open .topbar__toggle span:nth-child(1) { transform: translate(-50%, -1px) rotate(45deg); }
      .topbar.is-menu-open .topbar__toggle span:nth-child(2) { opacity: 0; }
      .topbar.is-menu-open .topbar__toggle span:nth-child(3) { transform: translate(-50%, -1px) rotate(-45deg); }
    }

    @media (max-width: 900px) {
      .page-head__frame { min-height: 380px; }
      .filter-row,
      .about-copy-grid,
      .event-main__layout { grid-template-columns: 1fr; }
      .event-main__layout { gap: 14px; }
      .date-badge { max-width: 70px; }
      .store-grid,
      .service-grid,
      .event-grid,
      .month-tabs,
      .tech-grid,
      .footer-hours,
      .footer-bottom,
      .news-grid,
      .restaurant-grid,
      .related-grid,
      .service-mini-grid { grid-template-columns: 1fr; }
      .home-services-showcase {
        padding: 24px;
        background: var(--bg-deep);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-card);
      }
      .restaurant-card__media--contain {
        padding: 18px;
      }
      .home-services-showcase__band { display: none; }
      .home-services-showcase__brand {
        padding: 0;
      }
      .home-services-showcase__brand img {
        max-width: 280px;
        height: 200px;
      }
      .home-services-showcase__cards {
        grid-template-columns: 1fr;
        padding: 0;
      }
      .home-service-card__title {
        margin: 0 4px;
        color: #ffffff;
      }
      .panel,
      .home-strip,
      .event-band,
      .tech-wrapper { padding: 28px 24px; }
      .section-heading {
        flex-direction: column;
        align-items: stretch;
      }
    }

    @media (max-width: 640px) {
      .page-main,
      .site-footer__inner,
      .page-head__frame {
        width: min(calc(100% - 28px), var(--shell-width));
      }
      .home-services-showcase {
        padding: 18px;
      }
      .restaurant-card__media--contain {
        padding: 14px;
      }
      .home-services-showcase__brand img {
        max-width: 220px;
        height: 160px;
      }
      .home-service-card__frame {
        padding: 12px;
        border-radius: 24px;
      }
      .home-service-card__media {
        border-radius: 18px;
      }
      .topbar {
        padding: 14px;
      }
      .topbar__logo img {
        width: 108px;
      }
      .topbar__nav {
        top: calc(100% + 12px);
      }
      .topbar__menu {
        padding: 8px 18px 10px;
        border-radius: 28px;
      }
      .topbar__menu a {
        min-height: 54px;
        font-size: 17px;
      }
      .page-head__title { font-size: 32px; }
      .section-title,
      .section-title--sm,
      .home-strip__copy h2,
      .related-heading h2,
      .event-band h2,
      .panel h2.panel-title,
      .event-main__body h2,
      .detail-title { font-size: 26px; }
      .store-card__name { font-size: 18px; }
    }
body.admin-bar .site-search { top: 32px; }

.site-search {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
}

.site-search[hidden] { display: none; }

.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 43, 69, 0.44);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-search__panel {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 780px);
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 26px 56px rgba(7, 43, 69, 0.18);
  padding: 24px;
}

.site-search__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--bg-deep);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.bv-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.bv-search-form .bv-search {
  position: relative;
}

.bv-search-form .bv-search__icon {
  position: absolute;
  inset: 0 18px 0 auto;
  width: 18px;
  height: 18px;
  margin: auto 0;
  color: #95a0aa;
  pointer-events: none;
}

.bv-search-form .bv-search__input {
  width: 100%;
  height: 54px;
  padding: 0 52px 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #46505b;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
  outline: none;
}

.bv-search-form .bv-search__input::placeholder { color: #8994a0; }

.bv-search-form .pill-button,
.bv-search-form .bv-btn {
  min-height: 54px;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--accent);
  color: #ffffff;
  border: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.socials a { display: inline-flex; }

@media (max-width: 782px) {
  body.admin-bar .site-search { top: 46px; }
}

@media (max-width: 900px) {
  .bv-search-form {
    grid-template-columns: 1fr;
  }
}

.home-hero--slider {
  position: relative;
  overflow: hidden;
}

.home-hero__track {
  position: relative;
}

.home-hero__slide {
  display: none;
}

.home-hero__slide.is-active {
  display: block;
}

.home-hero__slide a {
  display: block;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #ffffff;
}

.restaurant-card {
  color: inherit;
}

.movie-card__media > a {
  display: block;
  height: 100%;
}

.month-tabs a {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 999px;
  background: #ffffff;
  color: #7a858f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.month-tabs a.is-active {
  background: var(--accent);
  color: #ffffff;
}

.poster-row--archive {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 16px;
}

.archive-empty {
  margin: 0;
}

.pagination-wrap {
  margin-top: 26px;
}

.pagination-wrap ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-wrap a,
.pagination-wrap span {
  min-width: 44px;
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 700;
}

.pagination-wrap .current {
  background: var(--accent);
  color: #ffffff;
}

.pagination-wrap .dots {
  background: transparent;
  box-shadow: none;
  min-width: 0;
  padding: 0 4px;
}

.movie-detail {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: start;
}

.movie-detail__poster {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.movie-detail__poster img {
  width: 100%;
  height: auto;
}

.movie-detail__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.movie-detail__content .tag {
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .poster-row,
  .poster-row--archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .month-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .movie-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .poster-row,
  .poster-row--archive {
    grid-template-columns: 1fr;
  }

  .month-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
