:root {
      --page-bg-1: #faf8f4;
      --page-bg-2: #f2eee8;

      --header-h: 58px;
      --top-panel-h: min(86vh, 820px);

      --bottom-bar-h: 166px;
      --clock-size: 164px;
      --dip-width: 300px;
      --dip-height: 56px;

      --content-max: 1280px;
      --side: 24px;

      --text: #171717;
      --text-soft: rgba(23, 23, 23, 0.68);
      --text-muted: rgba(23, 23, 23, 0.5);

      --line: rgba(20, 20, 20, 0.1);
      --line-soft: rgba(20, 20, 20, 0.06);

      --topbar-bg: #f7f3eb;
      --topbar-border: rgba(20,20,20,0.08);

      --top-panel-y: -110%;
      --top-backdrop-opacity: 0;

      --panel-top: #fbfaf7;
      --panel-mid: #f4f0e9;
      --panel-bottom: #eee8de;

      --bar-top: #ffffff;
      --bar-bottom: #ece7de;

      --watch-second: #c61d1d;

      --bottom-shell-y: 100vh;
      --bottom-backdrop-opacity: 0;
      --bottom-hint-shift: 0px;

      --safe-top: env(safe-area-inset-top, 0px);
      --safe-bottom: env(safe-area-inset-bottom, 0px);
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scrollbar-gutter: stable;
    }

    body {
      margin: 0;
      min-height: 100vh;
      overflow-x: hidden;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top, rgba(255,255,255,.88), transparent 35%),
        linear-gradient(180deg, var(--page-bg-1) 0%, var(--page-bg-2) 100%);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.top-menu-open,
    body.bottom-menu-open {
      overflow: hidden;
    }

    body.is-bottom-dragging {
      cursor: ns-resize;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 120;
      padding-top: var(--safe-top);
      pointer-events: none;
      background: transparent;
      transition: z-index .18s ease;
    }

    body.top-menu-open .site-header {
      z-index: 300;
    }

    body.bottom-menu-open:not(.top-menu-open) .site-header {
      z-index: 70;
    }

    .site-header-inner {
      width: 100%;
      height: var(--header-h);
      border-bottom: 1px solid var(--topbar-border);
      background: var(--topbar-bg);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 0 max(16px, var(--side));
      pointer-events: auto;
    }

    .site-address {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-size: 1rem;
      font-weight: 760;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
    }

    .header-button {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(20,20,20,0.08);
      border-radius: 6px;
      background: rgba(255,255,255,0.52);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition:
        transform .28s cubic-bezier(.16,1,.3,1),
        background .28s ease,
        border-color .28s ease;
      -webkit-tap-highlight-color: transparent;
      position: relative;
      z-index: 2;
    }

    .header-button:hover {
      transform: translateY(-1px);
      background: rgba(255,255,255,0.82);
      border-color: rgba(20,20,20,0.12);
    }

    .hamburger-lines {
      display: grid;
      gap: 5px;
    }

    .hamburger-lines span {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #171717;
      transition: transform .3s ease, opacity .3s ease;
    }

    .header-button.is-open .hamburger-lines span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .header-button.is-open .hamburger-lines span:nth-child(2) {
      opacity: 0;
    }

    .header-button.is-open .hamburger-lines span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    main {
      position: relative;
      z-index: 1;
      min-height: 100vh;
    }

    .page-wrap {
      width: min(var(--content-max), calc(100% - (var(--side) * 2)));
      margin: 0 auto;
      padding: 24px 0 calc(250px + var(--safe-bottom));
    }

    .hero {
      max-width: 980px;
      padding-top: 8px;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(2.4rem, 6vw, 5rem);
      line-height: .92;
      letter-spacing: -0.065em;
      font-weight: 800;
      max-width: 9ch;
    }

    .hero p {
      margin: 18px 0 0;
      max-width: 34ch;
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-soft);
    }

    .section-block {
      margin-top: 56px;
      padding-top: 4px;
      scroll-margin-top: calc(var(--header-h) + 24px + var(--safe-top));
    }

    .section-head {
      margin-bottom: 18px;
      border-bottom: 1px solid rgba(20,20,20,.08);
      padding-bottom: 14px;
    }

    .section-label {
      margin: 0 0 8px;
      font-size: .74rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .section-block h2 {
      margin: 0;
      font-size: clamp(1.55rem, 2.1vw, 2.15rem);
      line-height: .96;
      letter-spacing: -0.05em;
      font-weight: 800;
    }

    .section-block p.section-intro {
      margin: 12px 0 0;
      max-width: 34ch;
      color: var(--text-soft);
      line-height: 1.72;
      font-size: .96rem;
    }

    .city-link-card {
      border: 1px solid rgba(20,20,20,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.5) 100%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.78);
      padding: 16px 18px 15px;
      margin-top: 38px;
    }

    .city-link-card h3 {
      margin: 0;
      font-size: 1rem;
      line-height: 1.02;
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    .city-link-card p {
      margin: 10px 0 0;
      color: var(--text-soft);
      line-height: 1.62;
      font-size: .9rem;
      max-width: 34ch;
    }

    .city-link-row {
      margin-top: 14px;
    }

    .city-link {
      min-height: 52px;
      padding: 0 2px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border-top: 1px solid rgba(20,20,20,.08);
      transition: transform .22s cubic-bezier(.16,1,.3,1);
    }

    .city-link:hover {
      transform: translateX(3px);
    }

    .city-link strong {
      display: block;
      font-size: .96rem;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .city-link span {
      color: rgba(23,23,23,.36);
      font-size: 1rem;
      line-height: 1;
    }

    .district-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 10px;
    }

    .district-link {
      min-height: 46px;
      padding: 0 14px;
      border: 1px solid rgba(20,20,20,.07);
      background: linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.48) 100%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-size: .88rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.76);
      transition:
        transform .22s cubic-bezier(.16,1,.3,1),
        background .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
    }

    .district-link:hover {
      transform: translateY(-1px);
      background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.66) 100%);
      border-color: rgba(20,20,20,.12);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.86),
        0 8px 18px rgba(0,0,0,.04);
    }

    .district-link span:last-child {
      color: rgba(23,23,23,.34);
      font-size: .96rem;
      line-height: 1;
    }

    /* TOP PANEL */
    .top-panel-stage {
      position: fixed;
      inset: 0;
      z-index: 180;
      pointer-events: none;
      display: none;
      transition: z-index .18s ease;
    }

    body.top-menu-open .top-panel-stage {
      display: block;
      z-index: 290;
      pointer-events: auto;
    }

    body.bottom-menu-open:not(.top-menu-open) .top-panel-stage {
      z-index: 60;
    }

    .top-panel-backdrop {
      position: absolute;
      inset: 0;
      opacity: 0;
      background: rgba(244, 239, 231, 0.72);
      pointer-events: none;
      transition: opacity .28s ease;
    }

    body.top-menu-open .top-panel-backdrop {
      opacity: var(--top-backdrop-opacity);
      pointer-events: auto;
    }

    .top-panel-shell {
      position: absolute;
      left: 0;
      right: 0;
      top: calc(var(--safe-top) + var(--header-h));
      transform: translateY(var(--top-panel-y));
      will-change: transform;
      pointer-events: none;
      z-index: 1;
    }

    body.top-menu-open .top-panel-shell {
      pointer-events: auto;
    }

    .top-panel {
      width: 100%;
      height: calc(var(--top-panel-h) - var(--header-h));
      background: #f4efe7;
      border-bottom: 1px solid rgba(20,20,20,0.08);
      box-shadow: 0 18px 40px rgba(0,0,0,0.06);
      overflow: hidden;
    }

    .top-panel-scroll {
      position: relative;
      z-index: 1;
      height: 100%;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      padding: 20px 0 28px;
      background: #f4efe7;
    }

    .top-panel-inner {
      width: min(920px, calc(100% - (var(--side) * 2)));
      margin: 0 auto;
      display: grid;
      gap: 24px;
    }

    .top-panel-hero,
    .top-panel-section {
      opacity: 0;
      filter: blur(8px);
      transform: translateY(18px);
      transition:
        opacity .7s cubic-bezier(.22,1,.36,1),
        transform .9s cubic-bezier(.16,1,.3,1),
        filter .9s cubic-bezier(.16,1,.3,1);
    }

    body.top-menu-open .top-panel-hero,
    body.top-menu-open .top-panel-section {
      opacity: 1;
      filter: blur(0);
      transform: translateY(0);
    }

    body.top-menu-open .top-panel-hero { transition-delay: .06s; }
    body.top-menu-open .top-panel-section:nth-of-type(1) { transition-delay: .12s; }
    body.top-menu-open .top-panel-section:nth-of-type(2) { transition-delay: .20s; }

    .top-panel-hero h2 {
      margin: 0;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      line-height: .95;
      letter-spacing: -0.05em;
      font-weight: 800;
    }

    .top-panel-hero p {
      margin: 10px 0 0;
      color: var(--text-soft);
      max-width: 34ch;
      line-height: 1.7;
    }

    .top-section-label {
      margin: 0 0 12px;
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .top-list {
      display: grid;
      gap: 8px;
    }

    .top-list--primary {
      gap: 10px;
    }

    .top-link {
      min-height: 58px;
      border-bottom: 1px solid rgba(20,20,20,0.06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 0 2px;
      transition: transform .25s cubic-bezier(.16,1,.3,1), opacity .25s ease;
    }

    .top-link:hover { transform: translateX(4px); }
    .top-link:last-child { border-bottom: 0; }

    .top-link-main {
      min-height: 72px;
      border-bottom: 1px solid rgba(20,20,20,0.06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 0 2px;
      transition: transform .25s cubic-bezier(.16,1,.3,1), opacity .25s ease;
    }

    .top-link-main:hover { transform: translateX(4px); }
    .top-link-main:last-child { border-bottom: 0; }

    .top-link-copy { min-width: 0; }

    .top-link-main strong {
      display: block;
      font-size: clamp(1.04rem, 1.6vw, 1.18rem);
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    .top-link-main span {
      display: block;
      margin-top: 5px;
      font-size: .88rem;
      color: var(--text-soft);
      line-height: 1.45;
    }

    .top-link strong {
      display: block;
      font-size: .96rem;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .top-link-arrow,
    .top-link-main-arrow {
      flex: 0 0 auto;
      color: rgba(23,23,23,.5);
      font-size: 1.3rem;
      line-height: 1;
    }

    /* BOTTOM PANEL */
    .bottom-panel-stage {
      position: fixed;
      inset: 0;
      z-index: 90;
      pointer-events: none;
      transition: z-index .18s ease;
    }

    body.bottom-menu-open .bottom-panel-stage {
      z-index: 240;
      pointer-events: auto;
    }

    body.top-menu-open:not(.bottom-menu-open) .bottom-panel-stage {
      z-index: 80;
    }

    .bottom-panel-backdrop {
      position: absolute;
      inset: 0;
      opacity: var(--bottom-backdrop-opacity);
      background:
        radial-gradient(circle at 78% 84%, rgba(198,29,29,.02), transparent 16%),
        linear-gradient(180deg, rgba(250,247,241,.04) 0%, rgba(238,232,223,.72) 100%);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      pointer-events: none;
      will-change: opacity;
    }

    body.bottom-menu-open .bottom-panel-backdrop {
      pointer-events: auto;
    }

    .bottom-panel-shell {
      position: absolute;
      inset: 0;
      transform: translateY(calc(var(--bottom-shell-y) + var(--bottom-hint-shift)));
      will-change: transform;
      pointer-events: none;
      overflow: visible;
    }

    body.bottom-menu-open .bottom-panel-shell,
    body.is-bottom-dragging .bottom-panel-shell {
      pointer-events: auto;
    }

    .bottom-panel-bar,
    .bottom-panel-bar * {
      user-select: none;
      -webkit-user-select: none;
      -webkit-touch-callout: none;
    }

    .bottom-panel-bar {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: var(--bottom-bar-h);
      z-index: 4;
      background: linear-gradient(180deg, var(--bar-top) 0%, var(--bar-bottom) 100%);
      box-shadow:
        0 14px 28px rgba(0,0,0,0.05),
        inset 0 -1px 0 rgba(20,20,20,0.04),
        inset 0 1px 0 rgba(255,255,255,0.85);
      cursor: grab;
      touch-action: none;
      pointer-events: auto;
      overflow: visible;
    }

    body.is-bottom-dragging .bottom-panel-bar {
      cursor: grabbing;
    }

    .bottom-panel-bar-inner {
      position: relative;
      width: min(calc(100% - 20px), 1560px);
      height: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      overflow: visible;
    }

    .dip-patch {
      position: absolute;
      right: calc((var(--clock-size) / 2) - (var(--dip-width) / 2));
      top: calc((var(--dip-height) * -1) - 0px);
      width: var(--dip-width);
      height: var(--dip-height);
      z-index: 3;
      pointer-events: none;
    }

    .dip-patch svg {
      display: block;
      width: 100%;
      height: 100%;
      overflow: visible;
      shape-rendering: geometricPrecision;
    }

    .dip-fill { fill: var(--bar-top); }

    .dip-stroke {
      fill: none;
      stroke: var(--line);
      stroke-width: 1;
      filter: drop-shadow(0 0 4px rgba(0,0,0,0.04));
    }

    .bottom-brand-wrap {
      position: relative;
      z-index: 4;
      width: 100%;
      min-height: var(--bottom-bar-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
    }

    .bottom-brand-copy {
      flex: 1 1 auto;
      min-width: 0;
      padding-right: 10px;
    }

    .bottom-brand-title {
      margin: 0;
      font-size: clamp(1.5rem, 2vw + .8rem, 3rem);
      line-height: .94;
      font-weight: 800;
      letter-spacing: -0.05em;
      max-width: 10ch;
    }

    .bottom-brand-subtitle {
      margin: 10px 0 0;
      color: var(--text-soft);
      font-size: .9rem;
      line-height: 1.4;
      max-width: 420px;
    }

    .clock-wrap {
      position: relative;
      width: var(--clock-size);
      height: var(--clock-size);
      flex: 0 0 var(--clock-size);
      transform: translateY(-14px);
      z-index: 7;
    }

    .clock-button {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 0;
      margin: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
      border-radius: 50%;
      -webkit-tap-highlight-color: transparent;
      outline: none;
      transform-origin: center center;
      transition:
        transform 1s cubic-bezier(.16,1,.3,1),
        filter 1s cubic-bezier(.16,1,.3,1);
      touch-action: manipulation;
    }

    .clock-button:hover {
      transform: translateY(-1px) scale(1.012);
      filter: drop-shadow(0 14px 24px rgba(0,0,0,.08));
    }

    .clock-button.is-pressing { transform: scale(.976); }

    .clock-button.is-open {
      transform: scale(1.016);
      filter: drop-shadow(0 18px 30px rgba(0,0,0,.10));
    }

    .bottom-panel-body {
      position: absolute;
      left: 8px;
      right: 8px;
      top: calc(var(--bottom-bar-h) - 1px);
      bottom: 8px;
      z-index: 2;
      border-radius: 0;
      border: 1px solid rgba(20,20,20,.07);
      border-top: 0;
      background: linear-gradient(180deg, var(--panel-top) 0%, var(--panel-mid) 56%, var(--panel-bottom) 100%);
      box-shadow:
        0 24px 70px rgba(0,0,0,.08),
        0 60px 120px rgba(0,0,0,.04);
      overflow: hidden;
      pointer-events: none;
    }

    body.bottom-menu-open .bottom-panel-body,
    body.is-bottom-dragging .bottom-panel-body {
      pointer-events: auto;
    }

    .bottom-panel-scroll {
      position: relative;
      z-index: 2;
      height: 100%;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      padding: 18px 0 calc(24px + var(--safe-bottom));
    }

    .bottom-panel-inner {
      width: min(calc(100% - 28px), 1640px);
      margin: 0 auto;
      display: grid;
      gap: 20px;
    }

    .bottom-section {
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      opacity: 0;
      filter: blur(8px);
      transform: translateY(18px);
      transition:
        opacity .8s cubic-bezier(.22,1,.36,1),
        transform 1.06s cubic-bezier(.16,1,.3,1),
        filter 1.06s cubic-bezier(.16,1,.3,1);
    }

    body.bottom-menu-open .bottom-section {
      opacity: 1;
      filter: blur(0);
      transform: translateY(0);
    }

    body.bottom-menu-open .bottom-section:nth-child(1) { transition-delay: .14s; }
    body.bottom-menu-open .bottom-section:nth-child(2) { transition-delay: .24s; }

    .bottom-section-head {
      padding: 0 2px 12px;
      border-bottom: 1px solid rgba(20,20,20,.08);
      margin-bottom: 12px;
    }

    .bottom-section-head .top-section-label {
      margin-bottom: 8px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(1.3rem, 2vw, 1.9rem);
      line-height: 1;
      letter-spacing: -0.04em;
      font-weight: 800;
    }

    .quick-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      gap: 8px;
    }

    .quick-link {
      min-height: 90px;
      padding: 14px;
      border-radius: 4px;
      border: 1px solid rgba(20,20,20,.1);
      background: rgba(255,255,255,.78);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 10px;
      transition:
        transform .3s cubic-bezier(.16,1,.3,1),
        background .3s ease,
        border-color .3s ease;
      opacity: 0;
      transform: translateY(10px);
    }

    .quick-link:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,.96);
      border-color: rgba(20,20,20,.16);
    }

    .quick-link strong {
      font-size: .94rem;
      letter-spacing: -0.02em;
      line-height: 1.1;
      max-width: 13ch;
    }

    .quick-link span {
      align-self: flex-end;
      color: rgba(23,23,23,.38);
      font-size: 1rem;
      line-height: 1;
    }

    .simple-list {
      display: grid;
      border-top: 1px solid rgba(20,20,20,.08);
    }

    .simple-link {
      min-height: 52px;
      padding: 0 4px;
      border-bottom: 1px solid rgba(20,20,20,.08);
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-weight: 700;
      font-size: .9rem;
      transition:
        transform .3s cubic-bezier(.16,1,.3,1),
        color .3s ease;
      opacity: 0;
      transform: translateY(8px);
    }

    .simple-link:hover {
      transform: translateX(3px);
    }

    body.bottom-menu-open .quick-link,
    body.bottom-menu-open .simple-link {
      opacity: 1;
      transform: translateY(0);
    }

    body.bottom-menu-open .quick-link:nth-child(1) { transition-delay: .28s; }
    body.bottom-menu-open .quick-link:nth-child(2) { transition-delay: .36s; }
    body.bottom-menu-open .quick-link:nth-child(3) { transition-delay: .44s; }
    body.bottom-menu-open .quick-link:nth-child(4) { transition-delay: .52s; }
    body.bottom-menu-open .quick-link:nth-child(5) { transition-delay: .60s; }

    body.bottom-menu-open .simple-link:nth-child(1) { transition-delay: .42s; }
    body.bottom-menu-open .simple-link:nth-child(2) { transition-delay: .48s; }
    body.bottom-menu-open .simple-link:nth-child(3) { transition-delay: .54s; }
    body.bottom-menu-open .simple-link:nth-child(4) { transition-delay: .60s; }

    #watch {
      font-size: calc(var(--clock-size) / 30);
      position: relative;
      width: 30em;
      height: 30em;
      user-select: none;
    }

    #watch ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    #watch .frame-face {
      position: relative;
      width: 30em;
      height: 30em;
      margin: 0 auto;
      border-radius: 15em;
      background: linear-gradient(to bottom, #f9f9f9, #7a7a7a);
      box-shadow:
        rgba(0,0,0,0.18) .35em .55em 2em,
        0 0 0 1px rgba(255,255,255,0.45);
    }

    #watch .frame-face:before {
      content: '';
      width: 29.4em;
      height: 29.4em;
      border-radius: 14.7em;
      position: absolute;
      top: .3em;
      left: .3em;
      background:
        linear-gradient(135deg, rgba(246,248,249,0) 0%, rgba(229,235,238,1) 50%, rgba(205,212,217,1) 51%, rgba(245,247,249,0) 100%),
        radial-gradient(ellipse at center, rgba(246,248,249,1) 0%, rgba(229,235,238,1) 65%, rgba(205,212,217,1) 66%, rgba(245,247,249,1) 100%);
    }

    #watch .frame-face:after {
      content: '';
      width: 28em;
      height: 28em;
      border-radius: 14.2em;
      position: absolute;
      top: .9em;
      left: .9em;
      box-shadow: inset rgba(0,0,0,.16) .18em .18em .9em;
      border: .1em solid rgba(0,0,0,.16);
      background: linear-gradient(to bottom, #fff, #d8d8d8);
    }

    #watch .minute-marks {
      position: absolute;
      inset: 0;
      z-index: 2;
    }

    #watch .minute-marks span {
      display: block;
      width: .2em;
      height: .6em;
      background: #8f9193;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -.4em 0 0 -.1em;
      transform: rotate(calc(var(--i) * 6deg)) translateY(-12.7em);
    }

    #watch .digits {
      width: 30em;
      height: 30em;
      border-radius: 15em;
      position: absolute;
      top: 0;
      left: 50%;
      margin-left: -15em;
      z-index: 3;
    }

    #watch .digits li {
      font-size: 1.6em;
      display: block;
      width: 1.6em;
      height: 1.6em;
      position: absolute;
      top: 50%;
      left: 50%;
      line-height: 1.6em;
      text-align: center;
      margin: -.8em 0 0 -.8em;
      font-weight: 700;
      color: #111;
      text-shadow: 0 1px 0 rgba(255,255,255,0.55);
    }

    #watch .digits li:nth-child(1) { transform: translate(3.9em, -6.9em); }
    #watch .digits li:nth-child(2) { transform: translate(6.9em, -4em); }
    #watch .digits li:nth-child(3) { transform: translate(8em, 0); }
    #watch .digits li:nth-child(4) { transform: translate(6.8em, 4em); }
    #watch .digits li:nth-child(5) { transform: translate(3.9em, 6.9em); }
    #watch .digits li:nth-child(6) { transform: translate(0, 8em); }
    #watch .digits li:nth-child(7) { transform: translate(-3.9em, 6.9em); }
    #watch .digits li:nth-child(8) { transform: translate(-6.8em, 4em); }
    #watch .digits li:nth-child(9) { transform: translate(-8em, 0); }
    #watch .digits li:nth-child(10) { transform: translate(-6.9em, -4em); }
    #watch .digits li:nth-child(11) { transform: translate(-3.9em, -6.9em); }
    #watch .digits li:nth-child(12) { transform: translate(0, -8em); }

    #watch .digits:before {
      content: '';
      width: 1.6em;
      height: 1.6em;
      border-radius: .8em;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -.8em 0 0 -.8em;
      background: #121314;
      z-index: 5;
    }

    #watch .digits:after {
      content: '';
      width: 4em;
      height: 4em;
      border-radius: 2.2em;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -2.1em 0 0 -2.1em;
      border: .1em solid #c6c6c6;
      background: radial-gradient(ellipse at center, rgba(200,200,200,0), rgba(190,190,190,1) 90%, rgba(130,130,130,1) 100%);
      z-index: 4;
    }

    #watch .digital-wrap {
      width: 11em;
      min-height: 4.95em;
      border: .1em solid #222;
      border-radius: .32em;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: 2.55em 0 0 -5.5em;
      overflow: hidden;
      background: linear-gradient(to bottom, #4c4c4c 0%, #0f0f0f 100%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 .15em .45em rgba(0,0,0,0.18);
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: .55em .7em .6em;
      text-align: center;
    }

    #watch .watch-weekday {
      color: #f2f2f2;
      font-family: Inter, system-ui, sans-serif;
      font-size: 1.1em;
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: .01em;
      text-transform: capitalize;
      white-space: nowrap;
    }

    #watch .watch-date {
      color: #dddddd;
      font-family: Consolas, Monaco, monospace;
      font-size: 1.52em;
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: .02em;
      margin-top: .12em;
      white-space: nowrap;
    }

    #watch .hours-hand,
    #watch .minutes-hand,
    #watch .seconds-hand {
      position: absolute;
      bottom: 50%;
      left: 50%;
      z-index: 9;
    }

    #watch .hours-hand {
      width: .8em;
      height: 7em;
      border-radius: 0 0 .9em .9em;
      background: #232425;
      margin: 0 0 -.8em -.4em;
      box-shadow: #232425 0 0 2px;
      transform-origin: .4em 6.2em;
    }

    #watch .hours-hand:before {
      content: '';
      background: inherit;
      width: 1.8em;
      height: .8em;
      border-radius: 0 0 .8em .8em;
      box-shadow: #232425 0 0 1px;
      position: absolute;
      top: -.7em;
      left: -.5em;
    }

    #watch .hours-hand:after {
      content: '';
      width: 0;
      height: 0;
      border: .9em solid #232425;
      border-width: 0 .9em 2.4em .9em;
      border-left-color: transparent;
      border-right-color: transparent;
      position: absolute;
      top: -3.1em;
      left: -.5em;
    }

    #watch .minutes-hand {
      width: .8em;
      height: 12.5em;
      border-radius: .5em;
      background: #343536;
      margin: 0 0 -1.5em -.4em;
      box-shadow: #343536 0 0 2px;
      transform-origin: .4em 11em;
    }

    #watch .seconds-hand {
      width: .2em;
      height: 14em;
      border-radius: .1em .1em 0 0 / 10em 10em 0 0;
      background: var(--watch-second);
      margin: 0 0 -2em -.1em;
      box-shadow: rgba(0,0,0,.25) 0 0 .2em;
      transform-origin: .1em 12em;
    }

    #watch .seconds-hand:after {
      content: '';
      width: 1.4em;
      height: 1.4em;
      border-radius: .7em;
      background: inherit;
      position: absolute;
      left: -.65em;
      bottom: 1.35em;
    }

    #watch .seconds-hand:before {
      content: '';
      width: .8em;
      height: 3em;
      border-radius: .2em .2em .4em .4em / .2em .2em 2em 2em;
      box-shadow: rgba(0,0,0,.18) 0 0 .2em;
      background: inherit;
      position: absolute;
      left: -.35em;
      bottom: -3em;
    }

    @media (max-width: 1180px) {
      .district-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    @media (max-width: 1100px) {
      .quick-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
      }
    }

    @media (max-width: 920px) {
      :root {
        --header-h: 56px;
        --top-panel-h: min(88vh, 820px);
        --bottom-bar-h: 154px;
        --clock-size: 148px;
        --dip-width: 280px;
        --dip-height: 52px;
      }

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

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

    @media (max-width: 640px) {
      :root {
        --side: 14px;
        --header-h: 54px;
        --bottom-bar-h: 140px;
        --clock-size: 136px;
        --dip-width: 236px;
        --dip-height: 44px;
      }

      .site-header-inner { padding: 0 12px; }
      .site-address { font-size: .92rem; }

      .header-button {
        width: 40px;
        height: 40px;
        border-radius: 6px;
      }

      .page-wrap {
        padding-bottom: calc(236px + var(--safe-bottom));
      }

      .hero h1 {
        font-size: clamp(2.05rem, 9.8vw, 3.2rem);
        max-width: 10ch;
      }

      .hero p {
        font-size: .95rem;
        line-height: 1.72;
        max-width: 100%;
      }

      .city-link-card {
        padding: 14px 16px 12px;
        margin-top: 30px;
      }

      .city-link-card p {
        font-size: .92rem;
        line-height: 1.64;
      }

      .district-grid,
      .quick-grid {
        grid-template-columns: 1fr;
      }

      .district-link {
        min-height: 48px;
        padding: 0 14px;
      }

      .top-panel-scroll,
      .bottom-panel-scroll {
        padding-top: 16px;
      }

      .top-panel-inner {
        width: calc(100% - 24px);
      }

      .bottom-panel-inner {
        width: calc(100% - 20px);
      }

      .top-panel-hero h2 {
        font-size: 1.62rem;
      }

      .top-link-main {
        min-height: 68px;
      }

      .top-link-main strong {
        font-size: 1rem;
      }

      .top-link-main span {
        font-size: .84rem;
      }

      .bottom-panel-body {
        left: 4px;
        right: 4px;
        bottom: 4px;
        border-radius: 0;
      }

      .bottom-brand-title {
        font-size: clamp(1rem, 4.8vw, 1.5rem);
        max-width: 11ch;
      }

      .bottom-brand-subtitle {
        font-size: .74rem;
        line-height: 1.32;
        margin-top: 7px;
        max-width: 210px;
      }

      .clock-wrap {
        transform: translateY(-16px);
      }

      #watch .digital-wrap {
        width: 9.2em;
        min-height: 4.25em;
        margin: 2.6em 0 0 -4.6em;
        padding: .45em .55em .5em;
      }

      #watch .watch-weekday { font-size: .96em; }
      #watch .watch-date { font-size: 1.24em; }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation: none !important;
        transition-duration: .01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
      }
    }